mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 02:31:09 -05:00
20 lines
413 B
PHP
20 lines
413 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\DesignerResource\Pages;
|
|
|
|
use App\Filament\Resources\DesignerResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditDesigner extends EditRecord
|
|
{
|
|
protected static string $resource = DesignerResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\DeleteAction::make(),
|
|
];
|
|
}
|
|
}
|