Package Data | |
---|---|
Maintainer Username: | Martins-74 |
Maintainer Contact: | pedro.martins7435@gmail.com (Pedro Martins) |
Package Create Date: | 2017-08-24 |
Package Last Update: | 2017-08-25 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-06 03:06:05 |
Package Statistics | |
---|---|
Total Downloads: | 662 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 29 |
Total Watchers: | 1 |
Total Forks: | 8 |
Total Open Issues: | 1 |
Artisan GUI is a Laravel Graphic User Interface for Artisan Comands. (Works on Live Servers with out SSH).
Artisan GUI is able to run when Laravel is in maintence mode, letting you executing commands with out harming your users.
Execute the following command on Composer to start downloading and installing.
composer require martins-74/artisan-gui:dev-master
Once Artisan GUI is installed, you need to register a Laravel service provider, in your config/app.php:
'providers' => [
...
Martins\ArtisanGUI\ArtisanGUIServiceProvider::class,
]
Now we need to publish the configurations, we do this by executing:
php artisan vendor:publish
The last thing to do is to edit the password in config/artisan-gui-configs.php file:
'password' => "wellthisisthesafestpassword",
Tip: Artisan GUI works when Laravel is in Debug Mode for security reasons so be sure that APP_DEBUG is set to true ("APP_DEBUG=true"), however you can change this depencie in config/artisan-gui-configs.php ('useLaravelDebug' => "no") to let you activate/disable Artisan GUI with other variable ('artisanGUISwitch' => "on") also set in the same file.
That's it know navigate to www.yoursite.com/artisan-gui
Note:
- Can't find a command? Enter in contact with me and i'll see if it's possible to add it.
php artisan make:controller;
php artisan make:migration;
php artisan make:model;
php artisan make:mail;
php artisan make:command;
php artisan make:seed;
php artisan migrate;
php artisan migrate:refresh;
php artisan migrate:install;
php artisan queue:table;
php artisan queue:restart;
php artisan queue:work;
php artisan db:seed;
php artisan schedule:run;
php artisan vendor:publish;
php artisan storage:link;
php artisan down;
php artisan up;
php artisan cache:clear;