How to create Controller in Laravel using Artisan Command

Admin   Laravel   765  2020-08-11 11:28:15

In this article, i will show you how to create controller in laravel application. i will give you examples of create controller in laravel using cmd. we will use php artisan make controller command to create controller in laravel project.

You have to see this tutorial for creating controller in laravel using artisan command. you can easily create controller with windows cmd and terminal.

What is Controller in Laravel?

In Laravel Controller handle all request of routes files and write logic for Views and Models. Using Controller you can easily bind models and views logic on it.

You can easily create controller using laravel command.

Now we will see how to create controller on laravel. You can simply create controller by following command:

php artisan make:controller DemoController

Now you can see controller file on bellow path:

app/Http/Controllers/DemoController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class DemoController extends Controller

{

}

You can easily connect route with controller as like bellow:

routes/web.php

Route::get('demo', '[email protected]');

app/Http/Controllers/DemoController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class DemoController extends Controller

{

/**

* The attributes that are mass assignable.

*

* @var array

*/

public function index()

{

return view('demo');

}

}

You can also create controller with invokable controller using bellow command:

php artisan make:controller ShowProfile --invokable

app/Http/Controllers/ShowProfile.php

.

I hope it can help you...