@@ -47,22 +47,22 @@ This guide was created with the help of [@st-claude](https://github.com/st-claud
4747
48487 . 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