File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
121121This allows you to combine filtering with any Laravel query workflow seamlessly.
122122
You can’t perform that action at this time.
0 commit comments