Benjamin
Performance issue with BulkAction : selectedRecords (only IDs, not Eloquent?)
It was better, but still too slow as my exports are including a lot of table. I ended up using FastExcel (https://github.com/rap2hpoutre/fast-excel) with Laravel Query Builder and it's way faster/easier to maintain. I could give you a code snippet if you want to see how I implemented it.
16 replies
Web push notifications
Same question here. I'm wondering if there it could be possible to use a
Notification
class (https://laravel.com/docs/11.x/notifications) and then a toFilament()
method that return a Filament Notification
(https://filamentphp.com/docs/3.x/notifications/database-notifications#sending-database-notifications).
Did you find a way to do this @Fatboii ?6 replies
Performance issue with BulkAction : selectedRecords (only IDs, not Eloquent?)
It's working but not sure this is optimal. I added this method in my
ListMissions
page :
It works, but I can't move the modifyQueryUsing()
inside my MissionExport
class because I can't access the livewire
component inside the setUp
method. Maybe a better solution would be to be able to use a callback on the exports()
method of the ExportAction
, and override the getQuery()
default behavior by passing a custom query, maybe as an optional parameter in the make()
method of the ExcelExport
class ?
What do you think @Dennis Koch ?16 replies
Table filters : column not found, why ?
For example here, why the
$query
is a neutral Builder
(same as doing User::query()
) and not the same query of the table that is used to fill the table, in $table->query()
? Does it mean that, for each filter, it makes another SQL query and then filter the table by IDs comparison ?
7 replies
Table filters : column not found, why ?
No, I make a
joinSub()
and an addSelect()
in the $table->query()
method. Accessor could work, I thought about it but was concerned about the performance. With an accessor, it will make one additional query to the availabilities
table no ?7 replies
Struggling with SelectFilter with relationship() and distinct status (Enum)
I foud similar issues (https://github.com/filamentphp/filament/issues/12948 + https://github.com/filamentphp/filament/issues/10086), and I finally used a custom filter :
3 replies