Преглед на файлове

Show all custom-items to all pros (and not only to creator)

Vijayakrishnan преди 4 години
родител
ревизия
f259232e79
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      app/Models/Pro.php

+ 1 - 1
app/Models/Pro.php

@@ -90,6 +90,6 @@ class Pro extends Model
     }
 
     public function canvasCustomItems($_key) {
-        return ClientCanvasDataCustomItem::where('key', $_key)->where('pro_id', $this->id)->get();
+        return ClientCanvasDataCustomItem::where('key', $_key)->get();
     }
 }