@extends('app') @section('titulo', 'Hotspot '.ucwords(str_replace("-", " ", $hotspot['nombre'])).' - '.config('app.name')) @section('contenido') @if(!isset($hotspot['address']))
Ha habido problemas al conectar con la API de Helium. El contenido quizá este disponible más tarde.
@endif

{{ str_replace("-", " ", $hotspot['nombre']) }}

Direccion: {{Str::limit($hotspot['hotspot'], 25, '...') }}
@if(isset($hotspot['address'])) Estado: {{ ucwords($hotspot['status']['online']) }}
Elevacion: {{ $hotspot['elevation'] }}
@php $number_array = str_split($hotspot['gain']); $ganancia = $number_array[0] . ',' . $number_array[1]; @endphp Ganancia: {{ $ganancia }}
Escala de Recompensa: {{ $hotspot['reward_scale'] }}
Localizacion: {{ $hotspot['geocode']['long_city'].', '.$hotspot['geocode']['long_country'] }}
Hexagono: {{ $hotspot['location_hex'] }}
Propietario: {{Str::limit($hotspot['owner'], 25, '...') }}
@php $desde = \Carbon\Carbon::parse($hotspot['timestamp_added']); $desde->locale('es')->formatLocalized('%B'); $hasta = \Carbon\Carbon::parse($hotspot['status']['timestamp']); $hasta->locale('es')->formatLocalized('%B'); @endphp Desde: {{ $desde }}
@endif @php $protocol = ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://"; $url = $protocol . $_SERVER['HTTP_HOST']; @endphp

Compartir

Enlace a esta pagina Enlace directo a votar Enlace directo al Explorer de Helium
@if(isset($hotspot['address']))
@endif @if($hotspot['mensaje'] != null)
{{$hotspot['mensaje']}}
@endif
@endsection @section('scripts') @endsection