laravel-cursor-paginator
laravel-cursor-paginator copied to clipboard
Cursor pagination for Laravel
Since next and previous URLs are always provided, I don't think the following methods work as intended: ``` public function hasMorePages() { return $this->meta['next'] != null; } public function onFirstPage()...
Bumps [laravel/framework](https://github.com/laravel/framework) from 7.21.0 to 7.30.4. Release notes Sourced from laravel/framework's releases. v7.30.4 Fixed Fixed empty html mail (#35941) Fixed type error in Illuminate\Http\Concerns\InteractsWithContentTypes::isJson() (#35956) Limit expected bindings (#35972, 006873d)...
Hi, the `meta` field in JSON response includes `next_item` object. There are multiple problems with this - It exposes all model attributes (no transformer/resource support) - Can not be configured/disabled...
Hi there. Thank you making this available. I was wondering, is there a way to implement the CursorPagination on merged collections that are not directly created from Eloquent Models or...
Bumps [symfony/http-kernel](https://github.com/symfony/http-kernel) from 5.1.3 to 5.1.5. Release notes Sourced from symfony/http-kernel's releases. v5.1.5 Changelog (https://github.com/symfony/http-kernel/compare/v5.1.4...v5.1.5) no changes v5.1.4 Changelog (https://github.com/symfony/http-kernel/compare/v5.1.3...v5.1.4) bug #37841 Backport handler lock when using VAR_DUMPER_FORMAT (ogizanagi) Commits...
Adding support for Requests that use params in array format. ``` GET /items?page[before]={cursor} ```