Skip to content

Commit cc11a53

Browse files
committed
Merge remote-tracking branch 'origin/5.3' into 5.3
2 parents 4ba1a71 + 0a0080d commit cc11a53

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

authentication.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,10 @@ Laravel raises a variety of [events](/docs/{{version}}/events) during the authen
521521
'App\Listeners\LogSuccessfulLogin',
522522
],
523523

524+
'Illuminate\Auth\Events\Failed' => [
525+
'App\Listeners\LogFailedLogin',
526+
],
527+
524528
'Illuminate\Auth\Events\Logout' => [
525529
'App\Listeners\LogSuccessfulLogout',
526530
],

database-testing.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,6 @@ You may also create a Collection of many models or create models of a given type
139139
// Create three App\User instances...
140140
$users = factory(App\User::class, 3)->make();
141141

142-
// Create an "admin" App\User instance...
143-
$user = factory(App\User::class, 'admin')->make();
144-
145-
// Create three "admin" App\User instances...
146-
$users = factory(App\User::class, 'admin', 3)->make();
147-
148142
#### Applying States
149143

150144
You may also apply any of your [states](#factory-states) to the models. If you would like to apply multiple state transformations to the models, you should specify the name of each state you would like to apply:

passport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ The published components will be placed in your `resources/assets/js/components`
144144
require('./components/passport/PersonalAccessTokens.vue')
145145
);
146146

147-
Once the components have been registered, you may drop them into one of your application's templates to get started creating clients and personal access tokens:
147+
After registering the components, make sure to run `gulp` to recompile your assets. Once you have recompiled your assets, you may drop the components into one of your application's templates to get started creating clients and personal access tokens:
148148

149149
<passport-clients></passport-clients>
150150
<passport-authorized-clients></passport-authorized-clients>

0 commit comments

Comments
 (0)