Fábio Roque
Fábio Roque
FFilament
Created by Fábio Roque on 12/4/2023 in #❓┊help
Get all selected records inside a custom page
protected function getTableHeaderActions(): array
{
return [
Action::make('export-users')
->action(function (array $data, $livewire) {
// how to get all selected records here?

// I can get all records, all filtered records, but selected?
dd($livewire->getFilteredTableQuery()->get());
})
];
}
protected function getTableHeaderActions(): array
{
return [
Action::make('export-users')
->action(function (array $data, $livewire) {
// how to get all selected records here?

// I can get all records, all filtered records, but selected?
dd($livewire->getFilteredTableQuery()->get());
})
];
}
11 replies
FFilament
Created by Fábio Roque on 12/4/2023 in #❓┊help
Get all selected records inside a custom page
I can't use a bulkAction inside the getTableHeaderActions()
11 replies
FFilament
Created by Fábio Roque on 12/4/2023 in #❓┊help
Get all selected records inside a custom page
but the stakeholder doesn't like the default behavior of filament, so He asked me to have this export button outside of the table... I would like to have this action in headerActions
11 replies
FFilament
Created by Fábio Roque on 12/4/2023 in #❓┊help
Get all selected records inside a custom page
the use case is, I have an export action that is possible export the data from selected records, it works as expected with BulkAction
11 replies
FFilament
Created by Fábio Roque on 5/20/2023 in #❓┊help
make:filament-theme is not defined ??
Thanks @Dan Harrin
3 replies
FFilament
Created by Fábio Roque on 5/13/2023 in #❓┊help
NavigationLabel translations
Thanks @danharrin
4 replies