laravelresource / resourcemaker
There is no license information available for the latest version (dev-master) of this package.
Generate a model, repository, controller and services
dev-master
2017-04-12 10:58 UTC
Requires
- php: >=5.5.9
- illuminate/console: 5.1.*
- illuminate/filesystem: 5.1.*
- illuminate/support: 5.1.*
Requires (Dev)
- mockery/mockery: 0.9.*
- orchestra/testbench: ~3.0
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-11-24 03:04:09 UTC
README
Generates a model, repository, controller and services
Installation
Add laravelresource/resourcemaker as a requirement to composer.json :
{ "require": { "laravelresource/resourcemaker": "dev-master" } }
Update your packages with composer update or install with composer install.
You can also add the package using composer require laravelresource/resourcemaker "dev-master"
and later specifying the version you want (for now, dev-master is your best bet).
Service Provider
LaravelResource\ResourceMaker\ResourceGeneratorServiceProvider::class,
And that's it! Start working with a awesome resource Generator!
Using the generator
From the command line, run:
php artisan make:resource ModelName "attributes"
For the simplest example, let's create a new users
resource:
php artisan make:resource Users