Skip to content

Commit

Permalink
অনুবাদ সম্পূর্ণ হয়েছে
Browse files Browse the repository at this point in the history
  • Loading branch information
Jubayed Hossain authored Nov 27, 2018
1 parent 3b14302 commit a213cc0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,19 @@ If you wish to use your own resolution logic, you may use the `Route::bind` meth
});
}

<a name="fallback-routes"></a>
## Fallback Routes

Using the `Route::fallback` method, you may define a route that will be executed when no other route matches the incoming request. Typically, unhandled requests will automatically render a "404" page via your application's exception handler. However, since you may define the `fallback` route within your `routes/web.php` file, all middleware in the `web` middleware group will apply to the route. Of course, you are free to add additional middleware to this route as needed:

Route::fallback(function () {
//
});

> {note} The fallback route should always be the last route registered by your application.


<a name="rate-limiting"></a>
## Rate Limiting

Expand Down

0 comments on commit a213cc0

Please sign in to comment.