Ejemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $search = Input::get('q');
     $recipes = $search ? Recipes::where('title', 'LIKE', '%' . $search . '%')->orderBy('created_at', 'DESC')->get() : Recipes::orderBy('created_at', 'DESC')->get();
     return view('Recipes.index')->with(array('title' => $this->title, 'recipes' => $recipes, 'search' => $search));
 }