public function indexAction()
 {
     $moments = Moment::recent()->get();
     $this->subMenu['moments']['active'] = true;
     return View::make('dashboard.moments.index')->withPageTitle('Moments')->withMoments($moments)->withSubMenu($this->subMenu);
 }