/**
  * Show the form for editing the specified allergy.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $allergy = Allergy::find($id);
     return View::make('allergies.edit', compact('allergy'));
 }