https://github.com/hellopeterlee/scaffold
Laravel 5.3+ Scaffold Generator, Support both bootstrap and Semantic UI and hplus
https://github.com/hellopeterlee/scaffold
generator-scaffolding scaffold-generator
Last synced: about 2 months ago
JSON representation
Laravel 5.3+ Scaffold Generator, Support both bootstrap and Semantic UI and hplus
- Host: GitHub
- URL: https://github.com/hellopeterlee/scaffold
- Owner: hellopeterlee
- License: mit
- Created: 2018-07-17T04:22:55.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-06T08:56:17.000Z (almost 6 years ago)
- Last Synced: 2025-02-13T20:28:59.885Z (4 months ago)
- Topics: generator-scaffolding, scaffold-generator
- Language: PHP
- Size: 88.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel 5.x Scaffold Generator
[](https://github.com/summerblue/generator)
[](https://packagist.org/packages/summerblue/generator)
[](https://github.com/summerblue/generator/tags)Laravel Scaffold Generator, for Laravel 5.3.
## Install
### Step 1: Install Through Composer
```
composer require 'hellopeterlee/scaffold' --dev
```### Step 2: Add the Service Provider
Open `/app/Providers/AppServiceProvider.php` and, to your **register** function, add:
```
public function register()
{
if (app()->environment() == 'local' || app()->environment() == 'testing') {$this->app->register(\HelloPeterlee\Scaffold\GeneratorsServiceProvider::class);
}
}
```### Step 3: Run Artisan!
You're all set. Run `php artisan` from the console, and you'll see the new commands `make:scaffold`.
## Examples
Use this command to generator scaffolding of **Project** in your project:
> php artisan make:scaffold Projects --schema="name:string:index,description:text:nullable,subscriber_count:integer:unsigned:default(0)"
This command will generate:
```
$ php artisan make:scaffold Projects --schema="name:string:index,description:text:nullable,subscriber_count:integer:unsigned:default(0)"----------- scaffolding: Project -----------
+ ./database/migrations/2017_04_17_065656_create_projects_table.php
+ ./database/factories/ModelFactory.php
+ ./database/seeds/ProjectsTableSeeder.php
+ ./database/seeds/DatabaseSeeder.php (Updated)
x ./app/Models/Model.php (Skipped)
+ ./app/Models/Project.php
+ ./app/Http/Controllers/ProjectsController.php
x ./app/Http/Requests/Request.php (Skipped)
+ ./app/Http/Requests/ProjectRequest.php
+ ./app/Observers/ProjectObserver.php
+ ./app/Providers/AppServiceProvider.php (Updated)
x ./app/Policies/Policy.php
+ ./app/Policies/ProjectPolicy.php
+ ./app/Providers/AuthServiceProvider.php (Updated)
+ ./routes/web.php (Updated)--- Views ---
+ create_and_edit.blade.php
+ index.blade.php
+ show.blade.php
x ./resources/views/error.blade.php
Migrated: 2017_04_17_065656_create_projects_table----------- -------------------- -----------
----------- >DUMP AUTOLOAD< -----------
```## Explain
Generate the following:
- Migration
- Seed, add ModelFactory entry, and DatabaseSeeder entry
- Base Model class, Model and helper trait
- Resource Controller
- Base FormRequest class and StoreRequest, UpdateRequest
- Policy and Policy base class, auto register AuthServiceProvider class
- Update routes file to register resource route
- Add error page view
- Create and Edit action share the same view## Future Plan
- API
- Admin
- Auto fill FormRequest rule
- Auto fill ModelFactory filed## Screenshot
