Stars: 309
Forks: 73
Pull Requests: 7
Issues: 9
Watchers: 14
Last Updated: 2023-08-07 21:39:46
Laravel CRUD Generator
License: MIT License
Languages: PHP
This Laravel Generator package provides and generate Controller, Model (with eloquent relations) and Views in Bootstrap for your development of your applications with single command.
Laravel >= 5.5
PHP >= 7.1
1 - Install
composer require ibex/crud-generator --dev
2- Publish the default package's config
php artisan vendor:publish --tag=crud
php artisan make:crud {table_name}
php artisan make:crud banks
Add a route in web.php
Route::resource('banks', 'BankController');
Route name in plural slug case.
php artisan make:crud {table_name} --route={route_name}
M Awais // Email Me