فهرست منبع

fix update member - checkIsItaly

ferrari 4 ماه پیش
والد
کامیت
80381b4391
1فایلهای تغییر یافته به همراه5 افزوده شده و 2 حذف شده
  1. 5 2
      app/Http/Livewire/Member.php

+ 5 - 2
app/Http/Livewire/Member.php

@@ -586,8 +586,11 @@ class Member extends Component
 
     public function checkIsItaly()
     {
-        $n = \App\Models\Nation::findOrFail($this->nation_id);
-        $this->isItaly = $n->is_italy;
+        if ($this->nation_id > 0) {
+            $n = \App\Models\Nation::findOrFail($this->nation_id);
+            $this->isItaly = $n->is_italy;
+        } else
+            $this->isItaly = false;
     }
 
     public function checkIsBirthItaly()