davion190510/mini-crud-generator

Mini CRUD Generator

Maintainers

Package info

github.com/naybala/Davion190510

pkg:composer/davion190510/mini-crud-generator

Statistics

Installs: 12

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-02-07 11:15 UTC

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/ )