Skip to content

Commit 63a7b1e

Browse files
committed
README and Service Provider changes
1 parent 0564a47 commit 63a7b1e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Then add to the aliases array the following:
1818

1919
Publish config file via `php artisan config:publish upwebdesign/laravel-lob`.
2020

21+
### Usage
22+
2123
You will now have access to the lob-php classes and methods to make your API calls
2224
```php
2325
Lob::addresses()->verify([

src/Upwebdesign/Lob/LobServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function register()
3030
{
3131
$that = $this;
3232
$this->app->singleton('lob', function() use ($that) {
33-
return new Lob($this->app['config']->get('services.lob.api_key'));
33+
return new Lob($this->app['config']->get('laravel-lob::api_key'));
3434
});
3535
}
3636

0 commit comments

Comments
 (0)