agustind / laravel-simple-crud
A Laravel 5.4 simple CRUD generator via artisan commands
Installs: 121
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/agustind/laravel-simple-crud
This package is not auto-updated.
Last update: 2025-10-12 05:52:10 UTC
README
This is a very light CRUD generator for Laravel 5.4 without all the bloat. It uses Twitter Bootstrap for easy integration.
It requires an already working database connection and it generates a CRUD for an existing table. The resulting route will be /model (example /posts) with a list of all records and functionality to create, edit and delete records.
Installation
- Install with
composer require agustind/laravel-simple-crud dev-master
- Add service provider to /config/app.php file
'providers' => [
...
Agustind\Crud\CrudServiceProvider::class,
],
- Use the new artisan command
php artisan crud:generate table_name
If a layout exists at resources/views/layouts/app.blade.php it will be used from the generated views.