hasMany('Deal\Deal\Models\Tag'); } /** * The category that belong to the deal. */ public function category(){ return $this->belongsTo('Deal\Deal\Models\Category'); } /** * The detail that belong to the deal. */ public function detail(){ return $this->belongsTo('Deal\Deal\Models\Detail'); } /** * The media that belong to the deal. */ public function media(){ return $this->belongsTo('Deal\Deal\Models\Medium'); } }