Loading video...
Fallback Routes
Routing
Fallback Routes
Typically when the route is not matched, Laravel will show 404 page, but if you want to handle all unmatched routes, this is how you can do it.
Route::fallback(function () {
// Handle all unmatched routes
});