In Laravel 5, App::missing and App::error is not available, so how do your catch exceptions and missing pages now?
App::missing
App::error
I could not find any inf
In case you want to keep the handler in your web routes file, after your existing routes:
Route::any( '{all}', function ( $missingRoute) { // $missingRoute } )->where('all', '(.*)');