mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 05:25:37 +07:00
20 lines
445 B
PHP
20 lines
445 B
PHP
<?php
|
|
|
|
namespace App\Filament\Admin\Resources\Vocabularies\Pages;
|
|
|
|
use App\Filament\Admin\Resources\Vocabularies\VocabularyResource;
|
|
use Filament\Actions\DeleteAction;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditVocabulary extends EditRecord
|
|
{
|
|
protected static string $resource = VocabularyResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
DeleteAction::make(),
|
|
];
|
|
}
|
|
}
|