how to add action buttons to slideOver() footer

this
image.png
Solution
use Filament\Actions\Action;

Tables\Actions\ViewAction::make()
    ->extraModalFooterActions([
        Action::make('edit'),
    ]),
Was this page helpful?