laravel controller create code example

Example 1: laravel create controller

php artisan make:controller MyController

Example 2: how to create controller in laravel

php artisan make:controller PhotoController --resource

Example 3: how to make controller in laravel

php artisan make:controller ShowProfile

Example 4: laravel sample controller

php artisan make:controller MyController
php artisan make:controller CompanyController --resource
//To create with a Model
php artisan make:controller CompanyController --resource --model=CompanyModel

Example 5: controller in laravel 8

Rout::get('/test' , [TestController::class , 'index']);

Tags:

Php Example