Skip to content

Commit

Permalink
fix: typo in readme
Browse files Browse the repository at this point in the history
fix: typo in readme
  • Loading branch information
lukas-frey authored Oct 30, 2024
2 parents f8af05b + c3dbe6b commit a021f7b
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 a021f7b

Please sign in to comment.