Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkingshott authored Apr 22, 2022
1 parent a963023 commit e6bdd2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ User::whereFuzzy('name', 'jd') // matches John Doe
->first();
```

You can also perform searched across multiple columns using `orWhereFuzzy` method calls:
You can also perform searches across multiple columns using `orWhereFuzzy` method calls:
```php
User::whereFuzzy(function ($query) {
$query->orWhereFuzzy('name', 'jd'); // matches John Doe
Expand Down

0 comments on commit e6bdd2b

Please sign in to comment.