how to list routes under resources in laravel code example
Example: laravel route resources
// Implicit Model Binding Routes can be created with one line using either:
Route::resource('photos', PhotoController::class);
// OR
Route::resources([
'photos' => PhotoController::class,
'posts' => PostController::class,
]);
php artisan make:controller PhotoController --resource --model=Photo
// makes a controller with stubouts for methods:
// index
// create
// store
// show
// edit
// update
// destroy