Skip to content

Commit

Permalink
Fix: fixes exception thrown on option "all"
Browse files Browse the repository at this point in the history
  • Loading branch information
TKrisee authored Jan 23, 2025
1 parent e31e7bc commit b9216b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ trait ExtendsTablePagination
{
protected function getDefaultPaginationQuery(Builder $query): Paginator|CursorPaginator
{
return $query->paginate($this->getTableRecordsPerPage());
return parent::paginateTableQuery($query);
}

protected function paginateTableQuery(Builder $query): Paginator|CursorPaginator
Expand Down

0 comments on commit b9216b1

Please sign in to comment.