예제 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index(Request $request)
 {
     $photo = 'dude';
     $search_term = $request->input('name');
     $photos = Image::search($search_term)->latest()->simplePaginate(12);
     return view('images.index', compact('photos'))->with('search_term', $search_term)->with('photo', $photo);
 }