eab-dsvenss/php-laravel-crud-generator

There is no license information available for the latest version (dev-master) of this package.

Package for generating CRUD structure for Laravel models

dev-master 2018-04-23 20:09 UTC

This package is not auto-updated.

Last update: 2024-04-14 02:50:53 UTC


README

CRUD generator for existing models

Installation

eab-crudgenerator:install

Usage

Configure the models according to the eab-dsvenss/php-laravel-model-generator-package.

Each model in the modelgenerator-configfile that should have a crud-structure generated need to have the key crud appended to the extras array.

Each model that have translatable content should also be appended with translatable in the extras section.

Each translatable model also need to have the following added in a specific model-adjustments file:

public $translatable = ['name'];

That is it needs to have an instance variable with an array specifying the translatable columns as a value. See Spatie laravel-translatable for details regarding a model and how to make it translatable.

Specify which models to generate CRUD operations for in the config-file eab-modelconfig from the eab-dsvenss:php-laravel-model-generator package by adding a "crud"-key with value true to the modelarray.

Generate CRUD structure

eab-crudgenerator:generate --type="backpack"