39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\TenantResource\Pages;
|
|
|
|
use App\Filament\Resources\TenantResource;
|
|
use App\Models\Tenant;
|
|
use App\Support\Auth\Capabilities;
|
|
use App\Support\Rbac\UiEnforcement;
|
|
use Filament\Actions;
|
|
use Filament\Actions\Action;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
|
|
class EditTenant extends EditRecord
|
|
{
|
|
protected static string $resource = TenantResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\ViewAction::make(),
|
|
UiEnforcement::forAction(
|
|
Action::make('archive')
|
|
->label('Archive')
|
|
->color('danger')
|
|
->requiresConfirmation()
|
|
->visible(fn (Tenant $record): bool => ! $record->trashed())
|
|
->action(function (Tenant $record): void {
|
|
$record->delete();
|
|
})
|
|
)
|
|
->requireCapability(Capabilities::TENANT_DELETE)
|
|
->tooltip('You do not have permission to archive tenants.')
|
|
->preserveVisibility()
|
|
->destructive()
|
|
->apply(),
|
|
];
|
|
}
|
|
}
|