sirio / laravel-command
This package for generating custom Views, Controllers, Models, Request and etc.
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/sirio/laravel-command
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, ];