InterviewSolution
Saved Bookmarks
| 1. |
How to create a route for resources in laravel? |
|
Answer» For creating a resource ROUTE we can use the below COMMAND: Route::resource('blogs', BlogController::CLASS);This will CREATE routes for six ACTIONS index, create, store, show, edit, update and delete. |
|