public function index()
 {
     $now = Carbon::now()->toDateTimeString();
     $now2 = Carbon::now()->subMonth(6)->toDateTimeString();
     $Integrantes = Integrante::whereBetween('updated_at', [$now2, $now])->orderBy('nombre', 'asc')->paginate(15);
     //$this->castFunctionsDate($Funciones);
     // dd($Funciones);
     return view('Integrantes/Integrantes')->with(['Integrantes' => $Integrantes]);
 }