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