Пример #1
0
 public function show($id)
 {
     $recipe = Recipe::with('ingredients', 'author')->where('id', $id)->first();
     return $recipe;
 }