laravel 6 resource show route code example

Example 1: 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

Example 2: how to named route resource laravel

Route::resource('faq', 'ProductFaqController', [
    'names' => [
        'index' => 'faq',
        'store' => 'faq.new',
        // etc...
    ]
]);

Tags:

Php Example