belongsTo('App\Models\ShopInfo', 'shop_id'); } /** * @Author FelixYin * @description 店铺服务所属项目 */ public function project() { return $this->belongsTo('App\Models\Project', 'service_id'); } /** * @Author FelixYin * @description 店铺项目关联技师服务 */ public function coaches() { return $this->hasMany('App\Models\ShopCoachService', 'service_id', 'id'); } }