Laravelでキーワードと条件を使用して検索する方法
$keyword = '検索キーワード'; // 検索したいキーワードを設定する $posts = DB::table('posts') ->where('title', 'LIKE', '%'.$keyword.'%') ->orWhere('content', 'LIKE', '%'.$keyword.'%') ->get(); foreach ($posts as $post) { // 検索結果の処理 echo $post->title; echo $post->>>More