Added not found page title lang

This commit is contained in:
Joseph Cohen
2014-12-31 19:48:49 -06:00
parent bf19cdc29e
commit 5e15495c26
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ API::error(function (\Illuminate\Database\Eloquent\ModelNotFoundException $excep
App::missing(function ($exception) {
if (Request::is('dashboard*') or Request::is('api*')) {
return Response::view('errors.404', [
'pageTitle' => 'That page went missing!',
'pageTitle' => Lang::get('cachet.dashboard.not_found_title'),
], 404);
}