public function postIndex()
 {
     $breadcrumbs = array(array('Competency' => ""), array('Diklat' => ""));
     $competencyAll = Competency::all();
     $recap = CompetencyRecap::where('competency_id', Input::get('cli'))->first();
     $recapInv = CompetencyRecapIndividuals::with('dictionary')->where('competency_recap_id', $recap->id)->where('gap', '<', 0)->get();
     //return $recapInv;
     $this->layout->content = View::make('development::useridentification.index', compact('competencyAll', 'recap', 'recapInv'));
 }