Explorar el Código

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

Vijayakrishnan hace 4 años
padre
commit
f259232e79
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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();
     }
 }