/**
  * Show the form for editing the specified post.
  *
  * @param  int  $id
  * @return Response
  */
 public function getEdit($id)
 {
     $comment = $this->actionhandler->find($id);
     return View::make('laravel-commentary::management.edit', compact('comment'));
 }