Answers for "how to named route resource laravel"

PHP
5

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
Posted by: Guest on March-23-2021
2

how naming resource routes laravel

By default, all resource controller actions have a route name;
however, you can override these names by passing a names array
with your desired route names:

use App\Http\Controllers\PhotoController;

Route::resource('photos', PhotoController::class)->names([
    'create' => 'photos.build'
]);
Posted by: Guest on July-24-2021
3

how to named route resource laravel

Route::resource('faq', 'ProductFaqController', [
    'names' => [
        'index' => 'faq',
        'store' => 'faq.new',
        // etc...
    ]
]);
Posted by: Guest on August-16-2020

Browse Popular Code Answers by Language