1php artisan make:controller PhotoController --resource --model=Photo
2Route::resource('photos', PhotoController::class);
1Simple controller:
2php artisan make:controller nameOfController
3
4Want to create controller in a folder? use it like this:
5php artisan make:controller NameOfFolder/nameOfController
6
7Resource Controller:This controller will create all CRUD methods
8php artisan make:controller nameOfController --resource