Edoggg93
Pagination not showing in dashboard table widget
Removing this from TableWidget solves the problem
protected function paginateTableQuery(Builder $query): Paginator
{
return $query->simplePaginate($this->getTableRecordsPerPage() == 'all' ? $query->count() : $this->getTableRecordsPerPage());
}
6 replies