davion153808/mini-crud-generator

Mini CRUD Generator

dev-main 2025-05-08 11:07 UTC

This package is auto-updated.

Last update: 2025-08-08 11:44:48 UTC


README

Installation

You can install this package via composer:

composer require davion153808/mini-crud-generator:dev-main

after installation was done. Add in " app.php ":

Davion153808\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

php artisan make:coreFeature--view

Credits

📜 License

The MIT License (MIT). Please see License File for more information.

Packagist

This package was register and publish at ( https://packagist.org/ )