F
Filament3mo ago
Zoltar

exporter, simple question

How can I change the title or text of the exporter's modal form? Thanks
Solution:
it can be customized exactly as any other action in filament: ```php ExportAction::make() ->modalHeading('MODAL HEADING ( Esporta users)')...
Jump to solution
7 Replies
Zoltar
ZoltarOP3mo ago
no ideas?
Eugen Pașca
Eugen Pașca3mo ago
what you mean by exporter's form ?
Zoltar
ZoltarOP3mo ago
click on the button in table header for exporting data
Zoltar
ZoltarOP3mo ago
No description
Zoltar
ZoltarOP3mo ago
mean this modal
Zoltar
ZoltarOP3mo ago
No description
Solution
Eugen Pașca
Eugen Pașca3mo ago
it can be customized exactly as any other action in filament:
ExportAction::make()
->modalHeading('MODAL HEADING ( Esporta users)')
->exporter(
// ExporterClass::class
),
ExportAction::make()
->modalHeading('MODAL HEADING ( Esporta users)')
->exporter(
// ExporterClass::class
),

Did you find this page helpful?