hasMany('Ecommerce\Product\Models\Category'); } /** * The brand that belong to the product. */ public function brand(){ return $this->belongsTo('Ecommerce\Product\Models\Brand'); } /** * The reviews that belong to the product. */ public function reviews(){ return $this->hasMany('Ecommerce\Product\Models\Review'); } }