mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
20 lines
439 B
PHP
20 lines
439 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Filament\Resources\System\PluginStoreResource\Pages;
|
||
|
|
|
||
|
|
use App\Filament\Resources\System\PluginStoreResource;
|
||
|
|
use Filament\Actions;
|
||
|
|
use Filament\Resources\Pages\EditRecord;
|
||
|
|
|
||
|
|
class EditPluginStore extends EditRecord
|
||
|
|
{
|
||
|
|
protected static string $resource = PluginStoreResource::class;
|
||
|
|
|
||
|
|
protected function getHeaderActions(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
Actions\DeleteAction::make(),
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|