| Package Data | |
|---|---|
| Maintainer Username: | marasco |
| Maintainer Contact: | francisco.marasco@gmail.com (Francisco Marasco) |
| Package Create Date: | 2016-09-03 |
| Package Last Update: | 2016-12-24 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-30 15:00:20 |
| Package Statistics | |
|---|---|
| Total Downloads: | 31 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 2 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Hi, this is a scaffold generator for Laravel 5.2. (Laravel scaffold for Laravel 5.1? change branch to laravel-5.1 )
This is a fork from Fernando Brito (laralib/l5scaffold)
composer require 'marasco/l5scaffold' --dev
Open config/app.php and, to your providers array at the bottom, add:
"Laralib\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/Controllers/TweetController.php
database/migrations/2015_04_23_234422_create_tweets_table.php
database/seeds/TweetTableSeeder.php
resources/views/layout.blade.php
resources/views/tweets/index.blade.php
resources/views/tweets/show.blade.php
resources/views/tweets/edit.blade.php
resources/views/tweets/create.blade.php
And don't forget to run:
php artisan migrate
Same as above with use of the prefix. It will create the prefix in redirects of controller and the links of views (v1.0.7):
php artisan make:scaffold Tweet --schema="title:string:default('Tweet #1'), body:text" --prefix="admin"
Create the empty scaffold views, controller, seed, migration and model (v1.0.6):
php artisan make:scaffold Tweet
Create the empty scaffold (with prefix) views, controller, seed, migration and model (v1.0.7):
php artisan make:scaffold Tweet --prefix="admin"

###Data type Date (on view)

###Data type Boolean (on view)

1 - Validations
2 - Support a Localization
3 - More fields type
4 - Default tests file
5 - sass and js with gulp
Send us your ideas. (send message to @fernandobritofl (Twitter))
##Collaborators Fernando Brito Francisco Marasco Sylvio Tavares Raphael Heitor Alfred Nutile Sazzad Hossain Khan Alexander Makhaev Adam Brown TJ Webb Tsaganos Tolis