lebarbucodeur/laravel-artisan
is a Laravel package providing some Artisan commands in a view. Very useful if you put a Laravel application on a mutualised server like OVH.
- Laravel 9.x
- PHP 8.x
You can install the package via composer:
composer require lebarbucodeur/laravel-artisan
To bypass maintenance of the Artisan commands list page, you must add this line in the app/Http/Middleware/PreventRequestsDuringMaintenance.php
file of your project :
protected $except = [
'/artisan*',
];
Simply add this to your code :
<a href="{{ route('laravel-artisan.list') }}">Artisan page</a>
Since I'm getting some questions about this I want these things to be perfectly clear:
- This is a safe haven for contributions, every (positive) contributon matters!
- You are free (and encouraged) to use anything of this package for your own ideas.
- You can always ask for help or email me directly for any questions.
Please see Contributing File for further details.
This package is possible because of the effort and time of these people! ✨
See the dedicated change log
The MIT License (MIT). Please see License File for more information.