在我的数据库中,我有以下表格:
我正在尝试通过数据透视表course_student中的created_at值来检索学生按顺序递减的所有课程
这是我定义模型的方式:
学生模型:
public function students () {
return $this->belongsToMany(Student::class, 'course_student', 'course_id', 'student_id')->withTimestamps();
}
课程模式:
public function courses () {
return $this->belongsToMany(Course::class, 'course_student', 'student_id', 'course_id')->withTimestamps();
}
这是我在控制器中尝试过的,但是没有用。
public function enrolled() {
$courses = Course::whereHas('students', function($query) {
$query->where('user_id', auth()->id())
->orderBy('course_student.created_at','desc');
})->get();
return view('courses.enrolled', compact('courses'));
}
你知道我该怎么做到吗?
答案 0 :(得分:2)
从学生那里获得课程:
$student = Student::where('user_id', auth()->id())->first();
$courses = $student->courses()->orderByDesc('course_student.created_at')->get();