Package Data | |
---|---|
Maintainer Username: | laraviet |
Maintainer Contact: | thanhcttsp@gmail.com (trthanhbk) |
Package Create Date: | 2015-07-13 |
Package Last Update: | 2018-01-23 |
Language: | JavaScript |
License: | MIT |
Last Refreshed: | 2024-11-14 15:05:25 |
Package Statistics | |
---|---|
Total Downloads: | 473 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 7 |
Total Watchers: | 4 |
Total Forks: | 1 |
Total Open Issues: | 0 |
This is a scaffold generator for Laravel 5.
For Laravel 5.2 or below, please use version 1.0.8
composer require 'laraviet/l5scaffold' --dev
Open config/app.php
and, to your providers array at the bottom, add:
"Laraviet\L5scaffold\GeneratorsServiceProvider"
You're all set. Run php artisan
from the console, and you'll see the new commands make:scaffold
.
php artisan make:scaffold Tweet --schema="title:string:default('Tweet #1'), body:text"
This command will generate:
app/Tweet.php
app/Http/Requests/TweetRequest.php
app/Http/Controllers/Admin/TweetController.php
app/Libs/ErrorDisplay.php
app/Libs/ValueHelper.php
database/migrations/2015_04_23_234422_create_tweets_table.php
database/seeds/TweetTableSeeder.php
resources/views/layout/admin.blade.php
resources/views/layout/error_display/all_errors.blade.php
resources/views/layout/error_display/field_errors.blade.php
resources/views/admin/tweets/index.blade.php
resources/views/admin/tweets/show.blade.php
resources/views/admin/tweets/edit.blade.php
resources/views/admintweets/create.blade.php
And don't forget to run:
php artisan migrate
Open app/Http/Requests/TweetRequest.php
and add validation rules at rules() method
public function rules()
{
return [
"title" => "required",
"body" => "required"
];
}
Open config/error_display.php
and update config:
"box" => false, //Display all validation error message in the top of page as box
"line" => true, //Display error message line by line
Views location for error message: resources/views/layout/error_display/