Answers for "what is resource controller in laravel and is it used for"

PHP
2

make controller laravel 8 with resource

php artisan make:controller PhotoController --resource --model=Photo
Route::resource('photos', PhotoController::class);
Posted by: Guest on October-17-2021

Code answers related to "what is resource controller in laravel and is it used for"

Browse Popular Code Answers by Language