sarps/laravel-gui is a Laravel package for gui version of the laravel artisan cli.
It currently has 1 GitHub stars and 8 downloads on Packagist.
Install it with composer require sarps/laravel-gui.
Discover more Laravel packages by sarps
or browse all Laravel packages to compare alternatives.
Last updated
GUI version of the laravel artisan CLI. supports PSR-4.
Via Composer
$ composer require Sarps/LaravelGUI
Once Laravel GUI is installed, you need to register a Laravel service provider, in your config/app.php:
'providers' => [
...
Sarps\LaravelGUI\ArtisanGUIServiceProvider::class,
]
Then publish Laravel GUI's assets(Enter this in the command-line):
php artisan vendor:publish
That's it, simply navigate to www.yoursite.com/LaravelGUI
Examples:
127.0.0.1:8000/LaravelGUI
localhost:8000/LaravelGUI
$skeleton = new Sarps\LaravelGUI();
echo $skeleton->echoPhrase('Hello, League!');
Please see CHANGELOG for more information on what has changed recently.
$ composer test
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.