santosalan/laravel-crud
Generate Laravel CRUD
2,014
4
| Install | |
|---|---|
composer require santosalan/laravel-crud |
|
| Latest Version: | v1.1.15 |
| PHP: | >=8.0.0 |
| License: | MIT |
| Last Updated: | May 11, 2026 |
| Links: | GitHub · Packagist |
Maintainer: santosalan
santosalan/laravel-crud
Install with Composer
php composer.phar require santosalan/laravel-crud
Doctrine Inflectors - Irregular Plural and Singular
Add it in config/app.php
/**
* Irregulares Words
*/
'doctrine-inflector' => [
'plural' => [
'irregular' => [
'traducao' => 'traducoes',
],
],
'singular' => [
'irregular' => [
'traducoes' => 'traducao',
],
],
],
Add it in app/Providers/AppServiceProvider.php
public function boot()
{
// Doctrine Irregular Rules
Inflector::rules('plural', config('app.doctrine-inflector.plural'));
Inflector::rules('singular', config('app.doctrine-inflector.singular'));
}
See Help
php artisan make:crud -h
See Tables
php artisan make:crud
Generate a Basic Laravel-CRUD examples
php artisan make:crud --tables [ all | table_number ] --path-models 'App\Models' --routes [ y | n ] --theme [1=AdminLTE | 2=Porto Admin]
or
php artisan make:crud -t [ all | table_number ] -p 'App\Models' -r [ y | n ] -T [1=AdminLTE | 2=Porto Admin]
Generate a Basic Laravel-CRUD API Client to santosalan/lumen-crud core
php artisan make:crud --tables [ all | table_number ] --path-models 'App\Models' --routes [ y | n ] --api-client Y
or
php artisan make:crud -t [ all | table_number ] -p 'App\Models' -r [ y | n ] -a Y
Publish Provider
php artisan vendor:publish --provider 'SantosAlan\LaravelCrud\ServiceProvider'
If make crud the API Client configure the app/Services/CoreApiService.php with data of the system core Lumen CRUD Server
Caution: All files will be replaced
Related Packages
serverfireteam/rapyd-laravel
crud widgets for laravel 5.1, to make an admin in few lines of code
32,870
4