macropay-solutions/laravel-crud-wizard-generator

Library for laravel-crud-wizard class generation

1.3.6 2025-04-02 13:45 UTC

This package is not auto-updated.

Last update: 2025-04-02 13:45:35 UTC


README

Total Downloads Latest Stable Version License

Library for laravel-crud-wizard-free - laravel-crud-wizard and for laravel-crud-wizard-decorator-free - laravel-crud-wizard-decorator

Installation

1. Run composer command:

composer require macropay-solutions/laravel-crud-wizard-generator --dev

2. Publish the provider:

php artisan vendor:publish --provider="MacropaySolutions\LaravelCrudWizardGenerator\LaravelCrudWizardGeneratorServiceProvider"

Usage

php artisan make:api-resource {resourceName} {--decorated} {--table=} {--connection=} {--composed} {--connectionAsModelFolder}

This will create a template for controller, service and model (with prepopulated columns from DB) (optionally, with the --decorated flag it will create also a decorator and middleware) and will print instructions on what is left to be done manually.

If connection is not the default one, it can be specified in the command option.

If table is not the snake cased resourceName, then it can be specified in the table option. It is advised to have the table migrated in DB already.

Run just php artisan make:api-resource or php artisan make:api-resource --decorated for interactive mode that will try to guess the tableName and use default connectionName.

--composed flag will generate model and service for composed primary key

Example:

php artisan make:api-resource products --decorated
Created Model: /var/www/html/project/app/Models/Product.php
Created ModelAttributes: /var/www/html/project/app/Models/Attributes/ProductAttributes.php
Created Service: /var/www/html/project/app/Services/ProductsService.php
Created Controller: /var/www/html/project/app/Http/Controllers/ProductsController.php
Created Decorator: /var/www/html/project/app/Decorators/ProductDecorator.php
Created Middleware: /var/www/html/project/app/Http/Middleware/Decorators/ProductsMiddleware.php
---------------------------------------------------------------------------------------------
TODO:
- Fill the Model's properties and relations,
- Fill the ModelAttributes' dock-block property types,
- Define validations and DbCrudMap in Controller
- Fill the Decorator,
- Register Middleware decorator as route middleware,
- Use the middleware alias as middleware in your crud route definition for each method.
- Expose resource in DbCrudMap::MODEL_FQN_TO_CONTROLLER_MAP.
---------------------------------------------------------------------------------------------
Thank you for using laravel-crud-wizard-generator
For more details see: https://github.com/macropay-solutions/laravel-crud-wizard-generator
For full cruFd suite: https://laravel-crud-wizard.com

php artisan make:api-resource products-methods-pivot --composed
Created Model: /var/www/html/project/app/Models/ProductMethodPivot.php
Created ModelAttributes: /var/www/html/project/app/Models/Attributes/ProductMethodPivotAttributes.php
Created Service: /var/www/html/project/app/Services/ProductsMethodsPivotService.php
Created Controller: /var/www/html/project/app/Http/Controllers/ProductsMethodsPivotController.php
---------------------------------------------------------------------------------------------
TODO:
- Fill the Model's properties and relations,
- Fill the ModelAttributes' dock-block property types,
- Replace composed primary keys id_1, id_2, ... in Model and Service,
- Define validations and DbCrudMap in Controller
- Expose resource in DbCrudMap::MODEL_FQN_TO_CONTROLLER_MAP.
---------------------------------------------------------------------------------------------
Thank you for using laravel-crud-wizard-generator
For more details see: https://github.com/macropay-solutions/laravel-crud-wizard-generator
For full cruFd suite: https://laravel-crud-wizard.com

Note.

If errors appear for creating folders (from docker container for example), create the folders manually or use this command in your project to give permissions to docker container for creating the files: sudo chown -R www-data:www-data app and run again the command.

The required folder structure is:

img_1.png

If --connectionAsModelFolder flag is used, --connection= will be \ucfirst and used as subfolder for Model and ModelAttributes.

If the command was already ran without the --decorated flag, it can be run again with it to generate the decorator and middleware.

License

This package is licensed under the license MIT.