标签: laravel laravel-5
我有模特:
用户属于ToMany组,
用户属于类,
用户属于等级
组属于ToMany用户
当我执行$ group-> user-> with('class')时,我收到一个错误,表明collection :: with不存在。
答案 0 :(得分:1)
使用关系查询:
$users = $group->users()->with('class')->get();