You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now you can quickly generate the wizard controller and the wizard steps:
74
+
Now you can qckly generate the wizard controller and the wizard steps:
75
75
76
76
```bash
77
77
php artisan make:wizard User NameStep,EmailStep
@@ -157,7 +157,7 @@ class NameStep extends Step
157
157
public function rules(Request $request)
158
158
{
159
159
return [
160
-
'name' => 'required',
160
+
'name' => 'reqred',
161
161
];
162
162
}
163
163
}
@@ -191,7 +191,7 @@ And add some steps view, for example:
191
191
192
192
Next, browse the URL `/wizard/user`, and start to use the Laravel Wizard.
193
193
194
-
> If you want to get the layout you can copy [Laravel UI layouts/app.blade.php](https://github.com/laravel/ui/blob/3.x/src/Auth/bootstrap-stubs/layouts/app.stub) to `resources/views/layouts/app.blade.php`
194
+
> If you want to get the layout you can copy [Laravel layouts/app.blade.php](https://github.com/laravel/ui/blob/4.x/src/Auth/bootstrap-stubs/layouts/app.stub) to `resources/views/layouts/app.blade.php`
0 commit comments