Пример #1
0
 /**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $recipe = Recipe::findOrFail($id);
     return view('recipe.show', compact('recipe'));
 }