Skip to content

Commit 4aea4e5

Browse files
committed
Merge branch 'master' into 3.0
2 parents 955f7b8 + c2c4e9c commit 4aea4e5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ package and have the autoloader updated.
3939

4040
Or run the following command:
4141

42-
"composer require jrean/laravel-user-verification"
42+
composer require jrean/laravel-user-verification
4343

4444

4545
### Add the Service Provider
@@ -48,13 +48,13 @@ Once Larvel User Verification is installed, you need to register the service pro
4848

4949
Open up `config/app.php` and add the following to the `providers` key:
5050

51-
* `Jrean\UserVerification\UserVerificationServiceProvider::class`
51+
Jrean\UserVerification\UserVerificationServiceProvider::class,
5252

5353
### Add the Facade/Alias
5454

5555
Open up `config/app.php` and add the following to the `aliases` key:
5656

57-
* `'UserVerification' => Jrean\UserVerification\Facades\UserVerification::class`
57+
'UserVerification' => Jrean\UserVerification\Facades\UserVerification::class
5858

5959
## Configuration
6060

@@ -294,11 +294,11 @@ Where to redirect after a successful verification token verification.
294294

295295
Where to redirect after a failling token verification.
296296

297-
* `$verificationErrorView = 'errors.user-verification';`
297+
* `$verificationErrorView = 'laravel-user-verification::user-verification';`
298298

299299
Name of the view returned by the getVerificationError method.
300300

301-
* `$verificationErrorView = 'errors.user-verification';`
301+
* `$verificationEmailView = 'emails.user-verification'`
302302

303303
Name of the default e-mail view.
304304

0 commit comments

Comments
 (0)