I have two tables, books, and chapters. One book has many chapters.
Book model:
public function chapters() {
return $this->hasMany(Chapter::class);
}
Chapter model:
public function book() {
return $this->belongsTo(Book::class);
}
I want to get book list with their own latest chapter using single query like this:
$books = Book::with(['authors', 'categories', 'chapters' => function($q) {
$q->orderBy('updated_at', 'desc')->first();
}]->get();
But it doesn't work. Chapters return an empty array. If I remove first() in the subquery, it works properly.
Are there any way to do this with just one query. I don't want to get all related chapters then keep one, or using multiple queries. The only way I feel better is using join, is it right?
Any help will be appreciated. Thanks!