php artisan make:controller PhotoController --resource --model=Photo
Route::resource('photos', PhotoController::class);
php artisan make:controller UserController --model=User -r -R
// run this command in terminal
php artisan make:controller PostController --resource --model=Post
// place this in web.php (route file)
Route::resource('posts', PostController::class);