我該死的困惑laravel.In的format()
功能某些刀片format()
在user.blade工作fine.But只能當我添加下面的函數laravel格式()的一些葉片功能只工作
public function getDates()
{
return array('created_at', 'updated_at', 'deleted_at', 'last_login_at');
}
user.blade
<td>{{ $user->created_at->format('d/m/Y')}}</td>
,並在我的活動葉片不能正常工作,甚至getDates()
功能added.what背後的原因是什麼?提前致謝。
錯誤=對字符串調用一個成員函數的格式()(查看: C:\的Inetpub \ wwwroot的\的OData \資源\意見\活動\ list.blade.php)
你正在得到什麼錯誤?格式函數在哪裏?你在哪裏添加'getDates'? – C2486
我更新我的問題。請檢查問題。 –