creative-syntax/artisan-ui
Run Laravel Artisan commands from a web-based UI on live servers, including shared hosting. Install, visit /{prefix}/artisan-ui, and execute common tasks (cache, migrations, controllers, more). Configurable route prefix/name, heading, and optional login/password protection.
composer require creative-syntax/artisan-ui
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
CreativeSyntax\ArtisanUi\CreativeSyntaxArtisanUi::class,
php artisan vendor:publish --tag="artisan-ui:config"
php artisan vendor:publish --provider="CreativeSyntax\ArtisanUi\CreativeSyntaxArtisanUi" --force
DIRECT USE BY ROUTE
Ex: http://your-website/onex/artisan-ui
Ex: http://localhost:8000/onex/artisan-ui




/** If you want to disable the route or this feature, then make it false */
'is_route_enabled' => true,
/** If you want to change the route prefix */
'route_prefix' => 'onex',
/** If you want to change the route name or path */
'route_name' => 'artisan-ui',
/** If you want to change the page heading */
'page_heading' => 'Artisan UI',
/** If you want to enable the securiry for access the artisan commands user interface (UI)
* Then make it ('is_enabled') true and also you can set login-id and password
*/
'authentication' => [
'is_enabled' => env('ARTISAN_UI_AUTH_ENABLED', false),
'login_id' => env('ARTISAN_UI_LOGIN_ID', 'onexadmin'),
'password' => env('ARTISAN_UI_LOGIN_PASSWORD', 'onexpassword')
]

The MIT License (MIT). Please see License File for more information.
If have any issue please write me.
How can I help you explore Laravel packages today?