DEV Community

Cover image for Laravel Run Artisan Command with Ui
saim
saim

Posted on

2 1

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

Sentry blog image

How to reduce TTFB

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

In this article, we’ll see how we can identify what makes our TTFB high so we can fix it.

Read more

Top comments (0)

Cloudinary image

Optimize, customize, deliver, manage and analyze your images.

Remove background in all your web images at the same time, use outpainting to expand images with matching content, remove objects via open-set object detection and fill, recolor, crop, resize... Discover these and hundreds more ways to manage your web images and videos on a scale.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay