加载时的Laravel APi资源

时间:2018-05-24 22:28:53

标签: laravel laravel-5

我正在尝试使用whenLoaded加载模型关系,如下所示:

Yard Resource

'latest_inspection' => new Inspection($this->whenLoaded('latestInspection'))

哪个工作正常,但在检查资源上还有一些其他关系不包括在内:

检查资源

'completed_tasks' => TaskResource::collection($this->whenLoaded('tasks')),
'feedings' => FeedResource::collection($this->whenLoaded('feeds')),

如何确保这些内容也会加载到Yard资源的latestInspection中?

0 个答案:

没有答案