我有一个查询,我使用 获取数据with
,但在该表中我有另一个关系,我想从中获取数据,但我不知道如何。
我需要的结果在question_topics
and之间lk_answers
(我有 topic_1、topic_2 的名称......)
public function index(Request $request)
{
$query = Question::select(['id', 'free_text', 'title', 'topics_id', 'created_at']);
$query->with('question_topics');
$query->question_topics->with('lkp_answers'); // something like that, but this line is not working.
return response()->json($query->paginate(5));
}