protected function getTableActions(): array
{
return [
Tables\Actions\ViewAction::make('view')
->form([])
->label('Details')
->button()
->color('primary')
->icon('heroicon-o-eye')
->modalHeading('Test')
->modalContent(fn ($record) => view('filament.modals.view-incident', ['record' => $record]))
->extraAttributes(['class' => 'justify-end'])
];
}
protected function getTableActions(): array
{
return [
Tables\Actions\ViewAction::make('view')
->form([])
->label('Details')
->button()
->color('primary')
->icon('heroicon-o-eye')
->modalHeading('Test')
->modalContent(fn ($record) => view('filament.modals.view-incident', ['record' => $record]))
->extraAttributes(['class' => 'justify-end'])
];
}