Add an Edit button in a view page

Is there a way to add an Edit button yo a view page?
2 Replies
LeandroFerreira
LeandroFerreira3mo ago
//YourViewPage.php
use Filament\Actions;
protected function getHeaderActions(): array
{
return [
Actions\EditAction::make()
];
}
//YourViewPage.php
use Filament\Actions;
protected function getHeaderActions(): array
{
return [
Actions\EditAction::make()
];
}
MikePageDev
MikePageDev3mo ago
Perfect thank you. I should have thought of that.