通过自定义数据透视表 (related_teams) 在同一模型(团队模型)上具有 belongsToMany 关系我的关系如下现在附加和分离工作正常,但是正如您所见,每个团队都属于一个城市。所以我的问题是如何从附属团队中获取不同城市的列表
1 回答
www说
TA贡献1775条经验 获得超8个赞
这取决于你想要达到什么,但是例如
$this->attachedHotels->groupBy('city_id');
https://laravel.com/docs/6.x/collections#method-groupby
或者
$this->attachedHotels->pluck('city_id')->unique();
https://laravel.com/docs/6.x/collections#method-pluck
https://laravel.com/docs/6.x/collections#method-unique
- 1 回答
- 0 关注
- 91 浏览
添加回答
举报
0/150
提交
取消