Package for generating CRUD structure for Laravel models
eab-dsvenss/php-laravel-crud-generator is a Laravel package for package for generating crud structure for laravel models.
It currently has 0 GitHub stars and 8 downloads on Packagist.
Install it with composer require eab-dsvenss/php-laravel-crud-generator.
Discover more Laravel packages by eab-dsvenss
or browse all Laravel packages to compare alternatives.
Last updated
CRUD generator for existing models
eab-crudgenerator:install
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.
eab-crudgenerator:generate --type="backpack"