php artisan make:controller UserController code example
Example 1: how to make controller in laravel
php artisan make:controller ShowProfile
Example 2: resource controller laravel
Route::resource('photos', PhotoController::class);
php artisan make:controller ShowProfile
Route::resource('photos', PhotoController::class);