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

Commit 37dc0ad

Browse files
committed
Update quick-start.md
1 parent a64656c commit 37dc0ad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

quick-start.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,22 @@ This guide was created with the help of [@st-claude](https://github.com/st-claud
4747

4848
7. Now run `php artisan migrate`.
4949

50-
8. Insert the following service providers in your `config/app.php` file (in the `providers` property):
50+
8. Insert the following service providers in your `config/app.php` file (in the `providers` array):
5151

5252
```php
5353
Adldap\Laravel\AdldapServiceProvider::class,
5454
Adldap\Laravel\AdldapAuthServiceProvider::class,
5555
```
5656

57-
9. Now, insert the facade into your `config/app.php` file:
57+
9. Now, insert the facade into your `config/app.php` file (in the `aliases` array):
5858

5959
```php
6060
'Adldap' => Adldap\Laravel\Facades\Adldap::class,
6161
```
6262

63-
> **Note**: Insertion of the facade in your `app.php` file isn't necessary unless you're planning on utilizing it.
63+
> **Note**: Insertion of this facade in your `app.php` file isn't necessary unless you're planning on utilizing it.
6464
65-
10. Now run `php artisan vendor:publish` to publish Adldap2's configuration files.
65+
10. Now run `php artisan vendor:publish` in your root project directory to publish Adldap2's configuration files.
6666

6767
* Two files will be published inside your `config` folder, `adldap.php` and `adldap_auth.php`.
6868

@@ -123,4 +123,4 @@ This guide was created with the help of [@st-claude](https://github.com/st-claud
123123
<input type="text" class="form-control" name="username" value="{{ old('username') }}">
124124
```
125125

126-
16. You should now be able to login to your Laravel application using LDAP authentication!
126+
16. You should now be able to login to your Laravel application using LDAP authentication! Congratulations, you're awesome.

0 commit comments

Comments
 (0)