We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0564a47 commit 63a7b1eCopy full SHA for 63a7b1e
README.md
@@ -18,6 +18,8 @@ Then add to the aliases array the following:
18
19
Publish config file via `php artisan config:publish upwebdesign/laravel-lob`.
20
21
+### Usage
22
+
23
You will now have access to the lob-php classes and methods to make your API calls
24
```php
25
Lob::addresses()->verify([
src/Upwebdesign/Lob/LobServiceProvider.php
@@ -30,7 +30,7 @@ public function register()
30
{
31
$that = $this;
32
$this->app->singleton('lob', function() use ($that) {
33
- return new Lob($this->app['config']->get('services.lob.api_key'));
+ return new Lob($this->app['config']->get('laravel-lob::api_key'));
34
});
35
}
36
0 commit comments