Faridleo
Faridleo
FFilament
Created by Glebka on 9/5/2024 in #❓┊help
Change label of the save button in edit form
Hi! You can publish the actions translations file with the following command: php artisan vendor:publish --tag=filament-actions-translations. After, change the aciton labels.
6 replies
FFilament
Created by Gaurav on 6/6/2024 in #❓┊help
Auto delete export files after 7 days
How I can delete database notifications too?
4 replies
FFilament
Created by acroninja on 7/9/2024 in #❓┊help
How to call export action from a console command or mailable?
You can do it with other package, for example: rap2hpoutre/fast-excel or aatwebsite/excel
4 replies
FFilament
Created by Clément on 7/11/2024 in #❓┊help
Export action with Enum column
Hello, You can export table with enum column. 1. Add cast to you model: protected function casts(): array { return [ 'identification_type' => IdentificationTypeEnum::class, ]; } 2. Modify state enum column: ExportColumn::make('identification_type') ->label(__('resources.customer.labels.identification_type')) ->state(fn($record) => $record->identification_type->getLabel()),
4 replies