Phone Myat
Phone Myat
FFilament
Created by Phone Myat on 3/26/2024 in #❓┊help
modal box width error
Ok I will try that thanks.
5 replies
FFilament
Created by Phone Myat on 11/2/2023 in #❓┊help
searchablePlaceholder does not working
ok thanks
4 replies
FFilament
Created by Phone Myat on 11/1/2023 in #❓┊help
Adding custom form action button
I get it. The solution is

protected function getFormActions(): array
{
return [
$this->getCreateFormAction(),
Action::make('saveAndBook')
->label('Save & Register booking')
->action(function(){
dd('hello');
}),
$this->getCancelFormAction(),
];
}

protected function getFormActions(): array
{
return [
$this->getCreateFormAction(),
Action::make('saveAndBook')
->label('Save & Register booking')
->action(function(){
dd('hello');
}),
$this->getCancelFormAction(),
];
}
at the create or edit page
4 replies