belongsTo('App\Models\Shop\Family'); } public function Inventories() { return $this->hasMany('App\Models\Shop\Inventory'); } public function Prices() { return $this->hasMany('App\Models\Shop\ArticlePrice'); } public function ProductAttributes() { return $this->hasMany('App\Models\Shop\ArticleAttribute'); } public function Categories() { return $this->hasMany('App\Models\Shop\ArticleCategory'); } public function InvoiceItems() { return $this->hasMany('App\Models\Shop\InvoiceItem'); } }