如何在Laravel SQL数据库关系中使用where子句

时间:2018-10-16 14:13:11

标签: php laravel-5.2

我想使用National来搜索最后的道歉,其中来自学生功能的National_id等于我该怎么做?

我尝试过:

return [
    'Students' => function ($students){
        $students->select('id', 'username','national_id', 'is_foreigner', 'college_id')
            ->with([
                'Apologies' => function ($apologies) use ($students) {

                    $apologies->select('student_id', 'reasons');
                    ->where('national', 'students.national_id');
                }
            ]);
    }
]

0 个答案:

没有答案