gusman / l5-crud-generator
There is no license information available for the latest version (v1.1) of this package.
Laravel 5's generators with TDD included.
v1.1
2017-11-17 07:04 UTC
Requires
- php: >=5.4.0
- illuminate/support: ~5.0
This package is not auto-updated.
Last update: 2025-06-08 07:26:25 UTC
README
Usage
Step 1: Install using composer
composer require gusman/l5-crud-generator --dev
Step 2: Add service provider
Open and edit file app/Providers/AppServiceProvider.php
public function register()
{
if ($this->app->environment() == 'local') {
$this->app->register('Gusman\L5Generator\L5GeneratorServiceProvider');
}
}
Step 3: Run artisan command
php artisan make:crud {model name}
Example
php artisan make:crud Sample