Download the PHP package wanglelecc/generator without Composer
On this page you can find all versions of the php package wanglelecc/generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download wanglelecc/generator
More information about wanglelecc/generator
Files in wanglelecc/generator
Download wanglelecc/generator
More information about wanglelecc/generator
Files in wanglelecc/generator
Vendor wanglelecc
Package generator
Short Description Extend Laravel 5.5's generators scaffold.
License MIT
Package generator
Short Description Extend Laravel 5.5's generators scaffold.
License MIT
Please rate this library. Is it a good library?
Informations about the package generator
Laravel 5.x Scaffold Generator
Laravel Scaffold Generator, for Laravel 5.3.
Install
Step 1: Install Through Composer
Step 2: Add the Service Provider
Open /app/Providers/AppServiceProvider.php
and, to your register function, add:
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:
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
Thinks to
All versions of generator with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0.0
The package wanglelecc/generator contains the following files
Loading the files please wait ....