1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-27 06:01:54 +03:00

Merge branch 'master' into feature/615

This commit is contained in:
Dan Brown
2018-05-20 09:51:45 +01:00
10 changed files with 175 additions and 161 deletions

View File

@ -153,4 +153,12 @@ class HomeController extends Controller
->view('robots', ['allowRobots' => $allowRobots])
->header('Content-Type', 'text/plain');
}
/**
* Show the route for 404 responses.
*/
public function getNotFound()
{
return response()->view('errors/404', [], 404);
}
}