public function run()
 {
     $faker = Faker::create();
     ReporteSubEquipo::create(['SolicitudesIngresadas' => 4562, 'TcAprobadas' => 3602, 'MetaTcAprobadas' => 3523, 'TcEntregadas' => 3155, 'TcActivas' => 1913, 'MetaTcActivas' => 1997, 'TcRechazados' => 738, 'dia' => 00, 'mes' => 12, 'fecha' => '2014-12-09', 'RatioAprobacion' => $faker->randomNumber($min = '1000', $max = '4000'), 'EQUIPO' => 'TLV CLIENTES', 'idEquipo' => '1']);
     ReporteSubEquipo::create(['SolicitudesIngresadas' => 26912, 'TcAprobadas' => 14070, 'MetaTcAprobadas' => 14530, 'TcEntregadas' => 10776, 'TcActivas' => 6569, 'MetaTcActivas' => 7230, 'TcRechazados' => 10736, 'dia' => 00, 'mes' => 12, 'fecha' => '2014-12-09', 'RatioAprobacion' => $faker->randomNumber($min = '1000', $max = '4000'), 'EQUIPO' => 'TLV PROSPECTO', 'idEquipo' => '2']);
     ReporteSubEquipo::create(['SolicitudesIngresadas' => 3073, 'TcAprobadas' => 918, 'MetaTcAprobadas' => 900, 'TcEntregadas' => 807, 'TcActivas' => 552, 'MetaTcActivas' => 720, 'TcRechazados' => 798, 'dia' => 00, 'mes' => 12, 'fecha' => '2014-12-09', 'RatioAprobacion' => $faker->randomNumber($min = '1000', $max = '4000'), 'EQUIPO' => 'VENTAS EXCLUSIVAS', 'idEquipo' => '3']);
 }
 public function graficoTrimestral()
 {
     return ReporteSubEquipo::select(\DB::raw("MAX(fecha) as fecha"), \DB::raw('SUM(TcAprobadas) as TcAprobadas'), \DB::raw('SUM(TcActivas)   as TcActivas'))->groupBy(\DB::raw("DATE_FORMAT(fecha,'%Y%m')"))->take(6)->orderBy('fecha', 'desc')->get();
 }