資料表有個expired_at
字段,資料是這樣的:
public function store(Request $request)
{
$data=[
'expired_at'=>Carbon::now()->addDays($publishing_days)->endOfDay()
];
$article=Article::create(array_merge($request->all(),$data));
return redirect('/artilces');
}
view:
{{$article->expired_at->format('Y-m-d')}}
error:
Call to a member function format() on string (View: D:\wnmp\www\laravel-5-3-dev\resources\views\artiles\index.blade.php)
怎麼回事?
這個錯誤訊息本身已經告訴你了啊, expire_at是字串, php中字串是沒有format方法的(其實沒有任何方法, 因為string在php中不是物件)
首先 expired_at 在資料庫中 需要為
timestamp
或者datetime
類型其次, 在Model 中將 此欄位加入 $dates
接著就可以當Carbon呼叫了