Skip to content

Commit 8dd91ee

Browse files
committed
Fix docs issue
1 parent 3932564 commit 8dd91ee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/credential-storage.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ For the package to know which model you want to use, you will need to call the f
2929

3030
```php
3131
use Webfox\Xero\Xero;
32+
use App\Models\User;
3233

33-
Xero::useModelStore(User::find(Auth::user()->id));
34+
Xero::useModelStore(User::find(1));
3435
```
3536

3637
By default, the package will use the `xero_credentials` field, Should you need to rename this field, you can do so by calling:

0 commit comments

Comments
 (0)