我試圖從數據庫中獲取以前的記錄,所以我可以鏈接到它。Laravel上一個和下一個記錄,返回對象
該函數中的$previous_comic
只返回published_at
字段,我無法做任何事情。
public function index()
{
$newest_comic = Comic::orderBy('published_at', 'DESC')->first();
$previous_comic = Comic::where('published_at', '<', $newest_comic->published_at)->max('published_at');
return View::make('comics.index')->with('newest_comic', $newest_comic)->with('previous_comic', $previous_comic);
}
我所需要的對象,所以我可以用{{ $previous_comic->slug }}
現在它只是返回
「試圖獲得非對象的屬性。」
我該怎麼做?
謝謝!