some fix
This commit is contained in:
@ -276,10 +276,10 @@ class ListJsonTable extends JasonTable
|
||||
if ($this->pagination) {
|
||||
$options = [
|
||||
'countItem' => $this->data['meta']['total'],
|
||||
'perPage' => $this->data['meta']['perPage'],
|
||||
'currentPage' => $this->data['meta']['currentPage'],
|
||||
'baseUrl' => $this->baseUrl,
|
||||
'prefix' => $this->data['meta']['paginationPrefix'],
|
||||
'perPage' => $this->data['meta']['perPage'] ?? 10,
|
||||
'currentPage' => $this->data['meta']['currentPage'] ?? 1,
|
||||
'baseUrl' => $this->baseUrl ?? '',
|
||||
'prefix' => $this->data['meta']['paginationPrefix'] ?? '/page',
|
||||
];
|
||||
$pagination = new Pagination($options);
|
||||
$pagination->create();
|
||||
|
Reference in New Issue
Block a user