add notice of enabling APP_DEBUG when error occured

This commit is contained in:
printempw 2017-01-02 14:41:58 +08:00
parent 7f966ce80d
commit 994b827643
3 changed files with 4 additions and 6 deletions

View File

@ -49,10 +49,8 @@ class Handler extends ExceptionHandler
*/
public function render($request, Exception $e)
{
if ($e instanceof HttpException) {
// call i18n middleware manually since http exceptions won't be sent through it
(new Internationalization)->handle($request, function(){});
}
// call i18n middleware manually since http exceptions won't be sent through it
(new Internationalization)->handle($request, function(){});
if ($e instanceof ModelNotFoundException) {
$e = new NotFoundHttpException($e->getMessage(), $e);

View File

@ -7,7 +7,7 @@ general:
title: Error occurred
brief:
message: Whoops, looks like something went wrong.
message: Whoops, looks like something went wrong. (enable APP_DEBUG to see details)
exception:
title: Some errors occurred

View File

@ -7,7 +7,7 @@ general:
title: 出现错误
brief:
message: 哎呀,你似乎触发了一个错误
message: 哎呀,你似乎触发了一个错误(开启 APP_DEBUG 以查看详细信息)
exception:
title: 出现了一些错误