You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Unsupported operand types: string * int (View: /var/task/vendor/filament/tables/resources/views/index.blade.php) (View: /var/task/vendor/filament/tables/resources/views/index.blade.php)"
Steps To Reproduce:
Open a list screen, set pagination to all
Fix:
...protectedfunctiongetDefaultPaginationQuery(Builder$query): Paginator|CursorPaginator
{
// This should be changedreturn$query->paginate($this->getTableRecordsPerPage());
// to thisreturnparent::paginateTableQuery($query);
}
...
The text was updated successfully, but these errors were encountered:
Expected Behaviour:
The page lists all available records
Actual Behaviour:
Throws the following error
Steps To Reproduce:
Open a list screen, set pagination to all
Fix:
The text was updated successfully, but these errors were encountered: