davion190510 / mini-crud-generator
Mini CRUD Generator
dev-main
2026-02-07 11:15 UTC
Requires
- php: ^8.0
- illuminate/support: ^8.0|^9.0|^10.0|^11.0|^12.0
Requires (Dev)
- orchestra/testbench: ^6.0|^7.0|^8.0
- phpunit/phpunit: ^8.0|^9.0|^10.0
This package is auto-updated.
Last update: 2026-03-07 11:26:11 UTC
README
Installation
You can install this package via composer:
composer require davion190510/mini-crud-generator:dev-main
after installation was done. Add in " app.php ":
Davion190510\MiniCRUDGenerator\MiniCRUDGeneratorServiceProvider::class,
and after you can run following command to publish config files:
php artisan vendor:publish --tag=config
⚙️ Configuration
for configure this package go to config/minicrud.php and if you want to customize namespace you can do like this
<?php return [ 'namespace' => 'Laravel', 'modules' => 'modules', ];
add line in composer.json autoload block
"autoload": {
"psr-4": {
//
"Laravel\\": "modules/"
}
},
and then
composer dump-autoload
Usage
php artisan make:coreFeature--all
php artisan make:coreFeature--logic
but you need to create folder first admin/demo
php artisan add-fields-to-view --model=Demo
Credits
📜 License
The MIT License (MIT). Please see License File for more information.
Packagist
This package was register and publish at ( https://packagist.org/ )