調べたんですけどわからないので質問します!
$favorite_sentences = $this->join('books', 'books.id', '=','book_id') ->select('sentences.*', 'books.title', 'books.author', 'books.book_image') ->whereHas('favorites', function($query) use ($user_id) { $query->where('user_id', $user_id); })->where('status', 0)->paginate(6);
例えばここに出てくる whereHasからのfunctionの意味がわからず困っています。
どなたかご教授お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/13 06:51