Skip to content

Commit d7670b1

Browse files
authored
Update README.md
1 parent 410d2f1 commit d7670b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The usage of this parameters will be discussed in continue.
3232

3333
## Simple usage
3434

35-
Step 1: Add the Filterable trait to your model
35+
#### Step 1: Add the Filterable trait to your model
3636

3737
```php
3838
use Amirhshokri\LaravelFilterable\Main\Filterable;
@@ -58,15 +58,15 @@ class User extends Authenticatable
5858

5959
If `$allowedFilterParameters` is not defined, all parameters will be allowed for filtering.
6060

61-
Step 2: Add the `filter()` method to your query builder
61+
#### Step 2: Add the `filter()` method to your query builder
6262

6363
```php
6464
$users = \App\Models\User::query()
6565
->filter()
6666
->get();
6767
```
6868

69-
Step 3: Make a request
69+
#### Step 3: Make a request
7070

7171
```json
7272
{

0 commit comments

Comments
 (0)