Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions core/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ The pagination can now be enabled or disabled by adding a query parameter named
- `GET /books?pagination=true`: enabled

Any value accepted by the
[`FILTER_VALIDATE_BOOLEAN`](https://www.php.net/manual/en/filter.filters.validate.php) filter can be
used as the value.
[`FILTER_VALIDATE_BOOLEAN`](https://www.php.net/manual/en/filter.constants.php#constant.filter-validate-bool)
filter can be used as the value.

##### Allowing the Client to Control Pagination Globally with Laravel

Expand Down Expand Up @@ -248,8 +248,8 @@ The pagination can now be enabled or disabled by adding a query parameter named
- `GET /books?pagination=true`: enabled

Any value accepted by the
[`FILTER_VALIDATE_BOOLEAN`](https://www.php.net/manual/en/filter.filters.validate.php) filter can be
used as the value.
[`FILTER_VALIDATE_BOOLEAN`](https://www.php.net/manual/en/filter.constants.php#constant.filter-validate-bool)
filter can be used as the value.

#### Allowing the Client to Control Pagination For a Specific Resource

Expand Down
Loading