sirio / laravel-command
This package for generating custom Views, Controllers, Models, Request and etc.
v0.3.1
2021-06-20 18:05 UTC
README
This is package to integrate Laravel Create Command with Laravel. It includes a ServiceProvider to register the command.
Installation
Require this package using composer.
composer require sirio/laravel-command
Optional: The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:
'providers' => [ // ... Sirio\LaravelCommand\SirioCommandServiceProvide::class, ];