hasMany('App\Models\Shop\Inventory'); } public function Prices() { return $this->hasMany('App\Models\Shop\ProductPrice'); } public function ProductAttributes() { return $this->hasMany('App\Models\Shop\ProductAttribute'); } public function Categories() { return $this->hasMany('App\Models\Shop\CategoryProduct'); } public function InvoiceItems() { return $this->hasMany('App\Models\Shop\InvoiceItem'); } }