/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $milk_productions = MilkProduction::findOrFail($id);
     return view('animals.redirect_milk_production', compact('milk_productions'));
 }