Example #1
0
 /**
  * responds to GET /recipes
  */
 public function getIndex()
 {
     $recipes = \P4\Recipe::orderBy('id', 'DESC')->get();
     return view('recipes.index')->with('recipes', $recipes);
 }