gusman / l5-crud-generator
Laravel 5's generators with TDD included.
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/gusman/l5-crud-generator
Requires
- php: >=5.4.0
- illuminate/support: ~5.0
This package is not auto-updated.
Last update: 2025-10-26 09:50:31 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