コード例 #1
0
ファイル: SearchController.php プロジェクト: suowei/saoju
 public function index(Request $request)
 {
     $keyword = $request->input('keyword');
     if ($keyword == '') {
         return redirect()->route('drama.index');
     }
     $dramas = Drama::where('title', 'LIKE', '%' . $keyword . '%')->orWhere('alias', 'LIKE', '%' . $keyword . '%')->get();
     $scs = Sc::where('name', 'LIKE', '%' . $keyword . '%')->orWhere('alias', 'LIKE', '%' . $keyword . '%')->get();
     $clubs = Club::where('name', 'LIKE', '%' . $keyword . '%')->get();
     return view('search.search', ['keyword' => $keyword, 'dramas' => $dramas, 'scs' => $scs, 'clubs' => $clubs]);
 }