gpt4 book ai didi

Laravel Eloquent : eager loading of multiple nested relationships

转载 作者:行者123 更新时间:2023-12-02 00:42:14 24 4
gpt4 key购买 nike

laravel 说的:

$books = App\Book::with('author.contacts')->get();

我需要的是这样的东西

$books = App\Book::with('author[contacts,publishers]')->get();

我们急切地加载一个关系中的多个关系。

这可能吗?

最佳答案

你可以做到

 $books = App\Book::with('author.contacts','author.publishers')->get();

关于Laravel Eloquent : eager loading of multiple nested relationships,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35490728/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com