20 lines
410 B
Plaintext
20 lines
410 B
Plaintext
<?php
|
|
|
|
namespace $EDIT_RESOURCE_PAGE_NAMESPACE$;
|
|
|
|
use $BASE_RESOURCE_NAMESPACE$;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class Edit$MODEL_NAME_SINGULAR$ extends EditRecord
|
|
{
|
|
protected static string $resource = $MODEL_NAME_SINGULAR$Resource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\DeleteAction::make(),
|
|
];
|
|
}
|
|
}
|