任何人都可以解释在执行以下代码时是否有办法捕获或记录错误?
//This has example has no semicolon.
Route::get('user/{id}', function($id)
{
return View::make('profile')
});
或者
//This example has no dollar sign (part of a blade template).
Welcome {{ userName }}
我最终得到了一个空白页面,而且还有几次发生这种情况,我不记得细节了。
我在 app/config/app.php 中将调试设置为 true,并且在 app/storage/logs 的日志文件中没有任何错误
这是正常的还是我的设置有问题?
谢谢
更新
Laravel 日志命令对我不起作用。请参阅回复 msturdy 的评论。