public function getFooterActions(): array
{
return [
Action::make('save')
->label('Save')
->color('success')
->action(function ($livewire) {
$livewire->dispatch('myRefresh');
$this->dispatch('closeModal');
}),
Action::make('cancel')
->label('Cancel')
->color('gray')
->action(function ($livewire) {
$livewire->dispatch('myRefresh');
$this->dispatch('closeModal');
}),
];
}
public function getFooterActions(): array
{
return [
Action::make('save')
->label('Save')
->color('success')
->action(function ($livewire) {
$livewire->dispatch('myRefresh');
$this->dispatch('closeModal');
}),
Action::make('cancel')
->label('Cancel')
->color('gray')
->action(function ($livewire) {
$livewire->dispatch('myRefresh');
$this->dispatch('closeModal');
}),
];
}