milose / laravel-mmc
Laravel Artisan console command to create Model / Migration / Controller files in singular form.
v1.1.0
2017-11-01 00:21 UTC
Requires
- php: ~5.6|~7.0
- illuminate/support: ^5
Requires (Dev)
- phpunit/phpunit: ~4.0||~5.0
- squizlabs/php_codesniffer: ^2.3
This package is not auto-updated.
Last update: 2024-11-23 21:46:17 UTC
README
Laravel Artisan console command to create Model / Migration / Controller files in singular form.
Install
To install this package run
composer require milose/laravel-mmc
If you are using Laravel version >= 5.5
you can skip the step below.
Adding a Service Provider
In your config/app.php file, find providers key, and add this to the end of the list:
Milose\LaravelMMC\LaravelMMCServiceProvider::class,
Usage
php artisan mmc invoice item
This will create InvoiceItem
model, create_invoice_item_table
migration and InvoiceItemController
Change log
Please see CHANGELOG for more information what has changed recently.
Credits
License
The MIT License (MIT).