+1 vote
in Laravel by
How to create a route for resources in laravel?

1 Answer

0 votes
by
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.
...