laravel route match

Solutions on MaxInterview for laravel route match by the best coders in the world

showing results for - "laravel route match"
Alan
03 May 2019
1Route::match(['get', 'post'], '/', function () {
2    //
3});
4
5Route::any('/', function () {
6    //
7});