Skip to content

Commit 114d95a

Browse files
committed
README updates
1 parent 17101c2 commit 114d95a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ $users = User::filter($filters)->paginate(15);
113113
$users = User::filter($filters)->simplePaginate(10);
114114
$user = User::filter($filters)->first();
115115
```
116-
->get() → retrieves all matching records.
117-
->paginate() → retrieves paginated results with page links.
118-
->simplePaginate() → retrieves simpler pagination without total count.
119-
->first() → retrieves the first matching record.
116+
* ->get() → retrieves all matching records.
117+
* ->paginate() → retrieves paginated results with page links.
118+
* ->simplePaginate() → retrieves simpler pagination without total count.
119+
* ->first() → retrieves the first matching record.
120120

121121
This allows you to combine filtering with any Laravel query workflow seamlessly.
122122

0 commit comments

Comments
 (0)