2017 © Pedro Peláez
 

project artisan-gui

Laravel Graphic User Interface for Artisan Comands. (Works on Live Servers with out SSH)

image

martins-74/artisan-gui

Laravel Graphic User Interface for Artisan Comands. (Works on Live Servers with out SSH)

  • Friday, August 25, 2017
  • by Martins-74
  • Repository
  • 1 Watchers
  • 12 Stars
  • 140 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 1 Versions
  • 32 % Grown

The README.md

Artisan GUI for Laravel 5.3+

Artisan GUI is a Laravel Graphic User Interface for Artisan Comands. (Works on Live Servers with out SSH)., (*1)

Artisan GUI is able to run when Laravel is in maintence mode, letting you executing commands with out harming your users., (*2)

enter image description here, (*3)


Installation

Execute the following command on Composer to start downloading and installing., (*4)

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:, (*5)

    'providers' => [
        ...
        Martins\ArtisanGUI\ArtisanGUIServiceProvider::class,
    ]

Now we need to publish the configurations, we do this by executing:, (*6)

php artisan vendor:publish

The last thing to do is to edit the password in config/artisan-gui-configs.php file:, (*7)

'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., (*8)

That's it know navigate to www.yoursite.com/artisan-gui, (*9)


List of Commands

Note:, (*10)

  • 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;

The Versions

25/08 2017

dev-master

9999999-dev

Laravel Graphic User Interface for Artisan Comands. (Works on Live Servers with out SSH)

  Sources   Download

MIT

by Pedro Martins