public function getService($id)
 {
     $all = Servicios::get();
     $serv = Servicios::find($id);
     $servicio = ContServ::where('id_serv', '=', $id)->get();
     $title = 'Servicios | Tecnographic Venezuela';
     $meta = "Ofrecemos la mayor calidad en desarrollo de paginas web, ademas de servicios de imagen corporativa de exelente calidad";
     return View::make('home.servicios')->with('contServ', $servicio)->with('serv', $serv)->with('title', $title)->with('meta', $meta)->with('all', $all)->with('lang', Session::get('language'));
 }
 public function getIndex()
 {
     $title = 'Tecnographic Venezuela | diseño y desarrollo de paginas web,imagen corporativa y sistemas administrativos';
     $meta = "Somos una empresa de diseño y desarrollo de paginas web en la ciudad de maracay";
     $href = array('#home', '#about', '#project', '#news', '#contact');
     $servicios = Servicios::get();
     $slidesSup = Slides::where('tipo', '=', 1)->where('activo', '=', 1)->where('deleted', '=', 0)->get();
     $slidesInf = Slides::where('tipo', '=', 2)->where('activo', '=', 1)->where('deleted', '=', 0)->get();
     return View::make('home.index')->with('title', $title)->with('href', $href)->with('meta', $meta)->with('servicios', $servicios)->with('slidesSup', $slidesSup)->with('slidesInf', $slidesInf)->with('lang', Session::get('language'));
 }