Laravel 4 多对多从两个表中获取所有数据
Posted
技术标签:
【中文标题】Laravel 4 多对多从两个表中获取所有数据【英文标题】:Laravel 4 many to many get all data from both tables 【发布时间】:2014-01-26 07:56:15 【问题描述】:我有表:用户、资源和数据透视表 user_resources。
用户
身份证 用户名等等
资源
身份证 资源名称等等
用户资源
身份证 user_id resource_id用户模型:
class Resources extends Eloquent
public function users()
return $this->belongsToMany('User', 'user_resources');
和资源模型:
class User extends Eloquent
public function resources()
return $this->belongsToMany('Resource', 'user_resources');
如何获取所有用户以及属于用户的所有资源。
【问题讨论】:
【参考方案1】:也许你只需要:
$everything = User::with('resources')->get();
【讨论】:
以上是关于Laravel 4 多对多从两个表中获取所有数据的主要内容,如果未能解决你的问题,请参考以下文章
Laravel - 渴望加载多对多,仅获取一条记录(不是集合)
Laravel:如何在多态多对多中使用 wherePivot