dev-master
9999999-dev
MIT
The Requires
- php >=5.4.0
- illuminate/support 4.2.*
- mustache/mustache 2.7.0
by Adrià Batlle Cuito
This Laravel package provides a simple and fast way to generate an admin skeleton., (*1)
Edit your composer.json to add this package, (*2)
"require-dev": { "sudobat/admin-generator": "dev-master" }
Then update Composer from the Terminal, run the following command on the root of your project:, (*3)
composer update --dev
When composer is done, add this provider to your providers list in app/config/app.php, (*4)
'Sudobat\AdminGenerator\AdminGeneratorServiceProvider'
If all the above went ok, you should see a new command admin:make when you run, (*5)
php artisan
php artisan admin:make --resources="..." [--base[="..."]] [--prefix[="..."]] [--namespace[="..."]]
Here is an explanation of the options one by one, (*6)
--resources
This is a list of the resources you want to create separated by commas, (*7)
--base
This is the path where the folder structure will be created ("app" by default), (*8)
--prefix
This is a sub-folder that will be created inside "controllers, models, views" directories ("admin" by default), (*9)
--namespace
This is the namespace under which all the controllers and models will be created ("" by default), (*10)
MIT