소스 검색

FIX ErrorException: Undefined array key "enabled"

if account type is "credit_card"  ToggleButton "enabled"  does not exist
and an exception occurs https://flareapp.io/share/17xwZk1P
3.x
bogusbd 1 년 전
부모
커밋
bf9b00d980
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      app/Filament/Company/Resources/Banking/AccountResource/Pages/CreateAccount.php

+ 1
- 1
app/Filament/Company/Resources/Banking/AccountResource/Pages/CreateAccount.php 파일 보기

@@ -23,7 +23,7 @@ class CreateAccount extends CreateRecord
23 23
 
24 24
     protected function mutateFormDataBeforeCreate(array $data): array
25 25
     {
26
-        $data['enabled'] = (bool) $data['enabled'];
26
+        $data['enabled'] = (bool) ($data['enabled'] ?? false);
27 27
 
28 28
         return $data;
29 29
     }

Loading…
취소
저장