38 lines
1016 B
PHP
38 lines
1016 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Monitoring\IssueManagements\Pages;
|
|
|
|
use App\Filament\Actions\BackAction;
|
|
use App\Filament\Resources\Monitoring\IssueManagements\IssueManagementResource;
|
|
use App\Filament\Support\CheerfulNotification;
|
|
use Filament\Notifications\Notification;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditIssueManagement extends EditRecord
|
|
{
|
|
protected static string $resource = IssueManagementResource::class;
|
|
|
|
public function getTitle(): string
|
|
{
|
|
return CheerfulNotification::getMessage('Sempurnakan Manajemen Isu 📝✨', 'Ubah Manajemen Isu');
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
BackAction::make()
|
|
->url(ListIssueManagements::getUrl()),
|
|
];
|
|
}
|
|
|
|
protected function getSavedNotification(): ?Notification
|
|
{
|
|
return CheerfulNotification::update();
|
|
}
|
|
|
|
protected function getRedirectUrl(): string
|
|
{
|
|
return $this->getResource()::getUrl('index');
|
|
}
|
|
}
|