Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-frey committed Nov 19, 2024
2 parents ef5beb4 + a021f7b commit 6b4ce43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ want to integrate. You can either return the `IDs` as strings (dot-separated pat
helper to retrieve the model:

```php
use use Guava\FilamentKnowledgeBase\Contracts\HasKnowledgeBase;

use Guava\FilamentKnowledgeBase\Contracts\HasKnowledgeBase;
use Guava\FilamentKnowledgeBase\Facades\KnowledgeBase;
class UserResource extends Resource implements HasKnowledgeBase
{
// ...
Expand All @@ -310,7 +310,7 @@ class UserResource extends Resource implements HasKnowledgeBase
return [
'users.introduction',
'users.authentication',
FilamentKnowledgeBase::model()::find('users.permissions'),
KnowledgeBase::model()::find('users.permissions'),
];
}
}
Expand Down

0 comments on commit 6b4ce43

Please sign in to comment.