3.8.0
Added
- RestResponse static
index
method, so you can return the same format for a custom paginator.
$paginator = User::query()->paginate(5);
$response = Binaryk\LaravelRestify\Controllers\RestResponse::index(
$paginator
);
Changed
- Signature of the
resolveIndexMainMeta
method, now it accept thepaginatorMeta
information:
public function resolveIndexMainMeta(RestifyRequest $request, Collection $items, array $paginationMeta): array