datasmart/laravel-crud-generator

This package is abandoned and no longer maintained. No replacement package was suggested.

php artisan command to generate fully working crud with a paginated grid only by having database tables

v0.1.17 2020-10-21 09:44 UTC

README

php artisan command to generate fully working crud with grid paginated server side only by having database tables

Installing

composer require datasmart/laravel-crud-generator

Add to config/app.php the following line to the 'providers' array:

CrudGenerator\CrudGeneratorServiceProvider::class,

Usage

Use the desired model name as the input

CRUD for students table

php artisan make:crud student

or the whole database

php artisan make:crud all

whole database with custom layout

php artisan make:crud all --master-layout=layouts.master

Because sometimes you need boilerplate code only for view and controller, you can use an existing model with custom controller name

php artisan make:crud student --master-layout=master --custom-controller=dashboard

For more options

php artisan help make:crud

Custom Templates

The best power of this plugin relies on you making your own templates and generating the code the way you like

Run this command:

php artisan vendor:publish

and you will have now in resources/templates/ the files you need to modify

If you want to go back to the default, just delete them

If you have any questions for the original author contact him on twitter @kEpEx