LaravelPackages.net
Acme Inc.
Toggle sidebar
yottaram/administrator-config

A simple model configuration generator for Laravel Administrator

55
2
About yottaram/administrator-config

yottaram/administrator-config is a Laravel package for a simple model configuration generator for laravel administrator. It currently has 2 GitHub stars and 55 downloads on Packagist. Install it with composer require yottaram/administrator-config. Discover more Laravel packages by yottaram or browse all Laravel packages to compare alternatives.

Last updated

Administrator Generate Config

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.

Comments