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