Procházet zdrojové kódy

edit catalog: dont show delete btn on products with relations

Alexander Musikhin před 7 měsíci
rodič
revize
587efbabad
1 změnil soubory, kde provedl 2 přidání a 3 odebrání
  1. 2 3
      app/Models/Product.php

+ 2 - 3
app/Models/Product.php

@@ -126,12 +126,11 @@ class Product extends Model
         if($this->maf_orders && ($this->maf_orders->count() > 0)) {
             return true;
         }
-
+        
         if($this->orders && ($this->orders->count() > 0)) {
             return true;
         }
-
-
+        
         return false;
     }