我需要在Laravel中加载多个关系,但我找不到如何做到这一点。在Laravel Doc中,它显示了如何仅针对一种关系执行此操作,例如:
$books = Book::with('author.contacts')->get();
我需要类似的东西:
$books = Book::with(array('author'=>array('contacts', 'groups', 'orders')))->get();
有什么想法吗?
答案 0 :(得分:2)
试试这个:
$books = Book::with('author.contacts','author.groups', 'author.orders')->get();