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
The summarize() method should use the same database connection as the model it's summarizing.
In /filament/tables/src/Concerns/CanSummarizeRecords.php, line 74, need to replace:
$query = DB::table($query->toBase(), $query->getModel()->getTable());
to this:
$query = $query->getConnection()->table($query->toBase(), $query->getModel()->getTable());
Sorry, I can't submit a bug, I don't have time to prepare a reproduction repository.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The summarize() method should use the same database connection as the model it's summarizing.
In
/filament/tables/src/Concerns/CanSummarizeRecords.php
, line 74, need to replace:$query = DB::table($query->toBase(), $query->getModel()->getTable());
to this:
$query = $query->getConnection()->table($query->toBase(), $query->getModel()->getTable());
Sorry, I can't submit a bug, I don't have time to prepare a reproduction repository.
Beta Was this translation helpful? Give feedback.
All reactions