mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 23:50:33 +00:00
19 lines
457 B
PHP
19 lines
457 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\HostingSubscriptionResource\Pages;
|
|
|
|
use App\Filament\Resources\HostingSubscriptionResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditHostingSubscription extends EditRecord
|
|
{
|
|
protected static string $resource = HostingSubscriptionResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\DeleteAction::make(),
|
|
];
|
|
}
|
|
}
|