https://github.com/sohelamin/crud-generator
Mas usando o release 3.3.1, que usa Bootstrap
- Removi o menu lateral
- Enxugiei ao meu modo
https://github.com/ribafs2/gerador-cruds/raw/main/resources-custom.zip
This Generator package provides various generators like CRUD, API, Controller, Model, Migration, View for your painless development of your applications.
Laravel >= 5.3
PHP >= 5.6.4
composer create-project --prefer-dist laravel/laravel crud
cd crud
composer require ribafs/crud-generator --dev
php artisan vendor:publish --provider="Ribafs\CrudGenerator\CrudGeneratorServiceProvider"
php artisan crud:generate Cadastros --fields='title#string; body#text;' --controller-namespace=App\\Http\\Controllers --form-helper=html
Add ao routes/web.php
Route::resource('/cadastros', 'App\Http\Controllers\CadastrosController');
Executar
php artisan route:clear
php artisan migrate
php artisan serve
http://127.0.0.1:8000/cadastros
Com combo na view
php artisan crud:generate Posts --fields='title#string; content#text; category#select#options={"technology": "Technology", "tips": "Tips", "health": "Health"}' --view-path=admin --controller-namespace=App\\Http\\Controllers\\Admin --route-group=admin --form-helper=html
Go through to the detailed documentation
If you're still looking for easier one then try this Admin Panel
This project is licensed under the MIT License - see the License File for details