figg1333
figg1333
FFilament
Created by pocket.racer on 7/21/2024 in #❓┊help
Is it possible to use filament table in filament form now?
Did you ever work this out?
4 replies
FFilament
Created by Wannes on 1/5/2024 in #❓┊help
Change button label on create page
in the models resource create page (CreateModelName.php), you can overwrite the getFormActions, and add the label to the returned actions: protected function getFormActions(): array { return [ $this->getCreateFormAction()->label('customCreateButton'), ...(static::canCreateAnother() ? [$this->getCreateAnotherFormAction()->label('customCreateAnotherButton')] : []), $this->getCancelFormAction()->label('customCancelButton'), ]; }
4 replies
FFilament
Created by CLT99 on 11/23/2023 in #❓┊help
How show JSON field (casted to array) in InfoList
@CLT99 Did you ever work this out? I would have thought that the RepeatableEntry would be compatible with the form Repeater field, and was meant to iterate over a json field, but this does not seem to be the case.
10 replies
FFilament
Created by Saifallak on 1/2/2024 in #❓┊help
use same panel on mulitple domains
There is no domain specific behavior by default, all domains (or even if you accessed it via direct IP) will give you the same panel/content by default.
11 replies