ceddyg / clara-entity-generator
Repository to generate a CRUD system (Controller, model, repository, view using bootstrap, and more) scanning the shema of the database.
4.1.1
2020-04-22 16:33 UTC
Requires
- php: >=7.2
- illuminate/support: ^6.0|^7.0
This package is auto-updated.
Last update: 2024-10-23 02:18:08 UTC
README
Installation
composer require ceddyg/clara-entity-generator
Add to your providers in 'config/app.php'
CeddyG\ClaraEntityGenerator\EntityGeneratorServiceProvider::class,
Then to publish the files.
php artisan vendor:publish --provider="CeddyG\ClaraEntityGenerator\EntityGeneratorServiceProvider"
Use
You can select all the table in it and define what file you want :
- Controller
- Model
- Repository (that extend ceddyg/query-builder-repository)
- Request
- Index view
- Form view (to create or edit)
- Traduction files (en and fr)
You have just to define the relations, if they are hasMany or belongsToMany relations and what files you want to create
You can edit the generator to custom your files. The generator is in app/Services/Clara/Generator and the stubs are in ressources/stubs.