阅读(985) (6)

Laravel 8 loadMissing($relations)

2021-07-08 09:44:56 更新

如果尚未加载关系,loadMissing 方法将会为集合中的所有模型加载给定的关系:

$users->loadMissing('comments', 'posts');

$users->loadMissing('comments.author');