Faridleo
Faridleo
FFilament
Created by SuperUserDo on 9/27/2024 in #❓┊help
Is there a way to prevent field form being auto-populated
Hello, the only solution that I found is redirect to index or refresh page
3 replies
FFilament
Created by Hakeem on 9/27/2024 in #❓┊help
had some issue with admin panel login
Do you use Laravel tenancy or something else?
5 replies
FFilament
Created by Anto03 on 9/27/2024 in #❓┊help
UploadFile error
Hi, verify that APP_URL is the same to app domain, or verify logs 🤙
5 replies
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.
8 replies
FFilament
Created by Gandalf 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