DEV Community

Cover image for Laravel Run Artisan Command with Ui
saim
saim

Posted on

Laravel Run Artisan Command with Ui

In section we will see how to run artisan command without terminal using GUI Package .

visit my website

Artisan GUI package

Simple but yet powerful library for running some artisan commands.

Requirements

Laravel 8.*

php ^7.3

Installation the package

composer require infureal/artisan-gui
Enter fullscreen mode Exit fullscreen mode

After installation we need to publish vendor file

php artisan vendor:publish --provider="Infureal\Providers\GuiServiceProvider"
Enter fullscreen mode Exit fullscreen mode

publish Vendor File

After installation you can check url http://you-domain.com/~artisan if you in local you can check

http://localhost:8000/~artisan
Enter fullscreen mode Exit fullscreen mode

Alt Text

Next, you can see all artisan command available you can simply run or create tables,model,seeder,many thing let

Create Model

in this example we will create Post model with all post model .controller, and factory ,seeder

Alt Text
Next, you need to give model name and select the value in my case i will give all
Alt Text
As you can see it successfully create all thing .

visit my website

Read also

Laravel each() Collection Method Example
3 way to install bootstrap 5 in laravel 8
Laravel php artisan inspire command
Laravel clear cache without using artisan command

Top comments (0)