Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 96f3820

Browse files
authored
Update quick-start.md
1 parent a8defe9 commit 96f3820

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

quick-start.md

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -82,28 +82,9 @@ This guide was created with the help of [@st-claude](https://github.com/st-claud
8282
14. Now insert a new auth driver inside your `config/auth.php` file:
8383

8484
```php
85-
'guards' => [
86-
'web' => [
87-
'driver' => 'session',
88-
'provider' => 'adldap', // Switched to 'adldap'
89-
],
90-
91-
'api' => [
92-
'driver' => 'token',
93-
'provider' => 'users',
94-
],
95-
],
96-
97-
9885
'providers' => [
99-
// New 'adldap' provider:
100-
'adldap' => [
101-
'driver' => 'adldap',
102-
'model' => App\User::class,
103-
],
104-
10586
'users' => [
106-
'driver' => 'eloquent',
87+
'driver' => 'adldap', // Was 'eloquent'.
10788
'model' => App\User::class,
10889
],
10990
],

0 commit comments

Comments
 (0)