34 lines
778 B
PHP
34 lines
778 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\PageResource\Pages;
|
|
|
|
use App\Filament\Resources\PageResource;
|
|
use Filament\Actions\DeleteAction;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditPage extends EditRecord
|
|
{
|
|
protected static string $resource = PageResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
DeleteAction::make(),
|
|
];
|
|
}
|
|
|
|
protected function getRedirectUrl(): ?string
|
|
{
|
|
return $this->getResource()::getUrl('index');
|
|
}
|
|
|
|
protected function getSavedNotification(): ?Notification
|
|
{
|
|
return Notification::make()
|
|
->success()
|
|
->title('Page updated')
|
|
->body('Page updated successfully');
|
|
}
|
|
}
|