| 12345678910111213141516171819202122232425262728293031 | 
							- <?php
 - 
 - namespace App\Filament\Company\Resources\Banking\AccountResource\Pages;
 - 
 - use App\Filament\Company\Resources\Banking\AccountResource;
 - use Filament\Actions;
 - use Filament\Resources\Pages\EditRecord;
 - 
 - class EditAccount extends EditRecord
 - {
 -     protected static string $resource = AccountResource::class;
 - 
 -     protected function getHeaderActions(): array
 -     {
 -         return [
 -             Actions\DeleteAction::make(),
 -         ];
 -     }
 - 
 -     protected function getRedirectUrl(): string
 -     {
 -         return $this->getResource()::getUrl('index');
 -     }
 - 
 -     protected function mutateFormDataBeforeSave(array $data): array
 -     {
 -         $data['enabled'] = (bool) ($data['enabled'] ?? false);
 - 
 -         return $data;
 -     }
 - }
 
 
  |