27 lines
634 B
PHP
27 lines
634 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\LearningObjectiveResource\Pages;
|
|
|
|
use App\Filament\Resources\LearningObjectiveResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditLearningObjective extends EditRecord
|
|
{
|
|
protected static string $resource = LearningObjectiveResource::class;
|
|
|
|
public function getTitle(): string
|
|
{
|
|
return 'Edit Tujuan Pembelajaran';
|
|
}
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\DeleteAction::make(),
|
|
Actions\ForceDeleteAction::make(),
|
|
Actions\RestoreAction::make(),
|
|
];
|
|
}
|
|
}
|