Skip to content

Commit 0e7ccc2

Browse files
authored
Update Laravel UI link
1 parent 9c1044e commit 0e7ccc2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ A web setup wizard for Laravel application.
5858
Install the package via composer:
5959

6060
```bash
61-
composer require ycs77/laravel-wizard
61+
composer reqre ycs77/laravel-wizard
6262
```
6363

6464
Publish config:
@@ -71,7 +71,7 @@ php artisan vendor:publish --tag=wizard-config
7171

7272
### 1. Generate controller and wizard steps
7373

74-
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:
7575

7676
```bash
7777
php artisan make:wizard User NameStep,EmailStep
@@ -157,7 +157,7 @@ class NameStep extends Step
157157
public function rules(Request $request)
158158
{
159159
return [
160-
'name' => 'required',
160+
'name' => 'reqred',
161161
];
162162
}
163163
}
@@ -191,7 +191,7 @@ And add some steps view, for example:
191191

192192
Next, browse the URL `/wizard/user`, and start to use the Laravel Wizard.
193193

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`
195195
196196
### 3. Install wizard steps CSS package
197197

0 commit comments

Comments
 (0)