/**
  * Display a listing of posts
  *
  * @return Response
  */
 public function getIndex()
 {
     $filter = array();
     $filter['status'] = Input::get('status', null);
     return View::make('laravel-commentary::management.index', array('comments' => $this->actionhandler->index($filter), 'filter' => $filter));
 }