Package Data | |
---|---|
Maintainer Username: | stillat |
Maintainer Contact: | john@stillat.com (Johnathon Koster) |
Package Create Date: | 2016-08-16 |
Package Last Update: | 2016-08-16 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:05:25 |
Package Statistics | |
---|---|
Total Downloads: | 10 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Model Cannon is an incredibly simple Laravel package that gives you back your "Models" directory, if you are into that sort of thing. Using it is super simple.
First, you need to add the Model Cannon package to your composer.json
file and run the composer update
command:
"stillat/model-cannon": "~1.0"
Next, register the Stillat\ModelCannon\ModelCannonServiceProvider
service provider in your app
configuration file. Simply add this line to the "packages" section of the app
config:
Stillat\ModelCannon\ModelCannonServiceProvider::class,
It couldn't be simpler! Just use Laravel's make:model
command like you always have. The only difference is now models will be stored in a Models
directory and have the correct Models
namepsace added automatically. Seriously, that is all there is to it.
php artisan make:model User
Model Cannon is open-sourced software licensed under the MIT license.