Download the PHP package hellopeterlee/scaffold without Composer
On this page you can find all versions of the php package hellopeterlee/scaffold. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download hellopeterlee/scaffold
More information about hellopeterlee/scaffold
Files in hellopeterlee/scaffold
Download hellopeterlee/scaffold
More information about hellopeterlee/scaffold
Files in hellopeterlee/scaffold
Vendor hellopeterlee
Package scaffold
Short Description Extend Laravel 5.5's generators scaffold.
License MIT
Package scaffold
Short Description Extend Laravel 5.5's generators scaffold.
License MIT
Please rate this library. Is it a good library?
Informations about the package scaffold
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
All versions of scaffold with dependencies
PHP Build Version
Package Version
The package hellopeterlee/scaffold contains the following files
Loading the files please wait ....