/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $objs = Servicio::paginate(10);
     return view('servicios.index', array("objs" => $objs));
 }