Google News
logo
Laravel - Interview Questions
What are the available router methods in Laravel?
The following list shows the available router methods in Laravel:
 
* Route::get($uri, $callback);
* Route::post($uri, $callback);
* Route::put($uri, $callback);
* Route::patch($uri, $callback);
* Route::delete($uri, $callback);
* Route::options($uri, $callback);
Advertisement