yottaram / administrator-config
A simple model configuration generator for Laravel Administrator
Installs: 55
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 0
Forks: 1
Open Issues: 0
pkg:composer/yottaram/administrator-config
Requires
- php: >=5.4.0
- frozennode/administrator: 4.*
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-10-21 12:31:45 UTC
README
A simple model configuration generator for Laravel Administrator https://github.com/FrozenNode/Laravel-Administrator/
This package provides an artisan command to generate skeleton model configuration files from model classes suitable for Laravel Administrator.
This is very much a work in progress. The output skeleton model configuration files should be viewed as a step-saver and it is expected that they are reviewed and edited before deploying.
Usage
To use as a Composer package with Laravel 4, add this to your composer.json:
"yottaram/administrator-config": "dev-master"
And run composer update. When it is installed, register the service provider in app/config/app.php in the providers array:
'providers' => array( 'Yottaram\AdministratorConfig\AdministratorConfigServiceProvider', )
This creats an artisan command and can be used with php artisan administrator:config --help
You will be prompted for output directory and asked to confirm each model config creation. To skip confirmation use --no-prompt. An existing model configuration will never be overwritten.