In Laravel 5, custom error pages are handled through the new exception handler at app/Exceptions/Handler.php. The framework automatically checks for view files under the errors namespace matching the HTTP status code. To create a custom 404 page, simply add a Blade view at resources/views/errors/404.blade.php — no additional configuration needed.
3 Impressions