From 8dc73e14d24d371ab4c821ccebba257a7828f425 Mon Sep 17 00:00:00 2001 From: Raphael Heitor Date: Sat, 25 Jun 2016 13:57:04 -0400 Subject: [PATCH] adjusted readme --- readme.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 88621a0..996574f 100644 --- a/readme.md +++ b/readme.md @@ -52,19 +52,18 @@ php artisan migrate ### Other Examples (new) +Same as above with use of the prefix. It will create the prefix in redirects of controller and the links of views: ``` php artisan make:scaffold Tweet --schema="title:string:default('Tweet #1'), body:text" --prefix="admin" ``` -Same as above with use of the prefix. It will create the prefix in redrects of controller and the links of views. - +Create the empty scaffold views, controller, seed, migration and model: ``` php artisan make:scaffold Tweet ``` -Create the empty scaffold: views, controller, seed, migration and model. +Create the empty scaffold (with prefix) views, controller, seed, migration and model: ``` php artisan make:scaffold Tweet --prefix="admin" ``` -Create the empty scaffold (with prefix): views, controller, seed, migration and model. ## Scaffold ![image](http://i62.tinypic.com/11maveb.png)