@extends('layouts.master') @section('title', 'Home') @section('content')
@if(0)

{{number_format($hashrateNice,2,',','.')}} MH/s

Hash Rate

{{number_format($rentNice,6,',','.')}} BTC/24hs

Rentabilidad BTC

{{number_format($rentNice*$BTC_USD,2,',','.')}} USD/24hs

{{number_format($rentNice*30*$BTC_USD,2,',','.')}} USD/30dias

{{$placasNice}} {{$placasNice}}

Placas
@endif @if(Auth::User()->hive())

{{number_format($hashrateHive,2,',','.')}} MH/s

Hash Rate

{{number_format($rentNice,6,',','.')}} BTC/24hs

Rentabilidad BTC

{{number_format($rentNice*$BTC_USD,2,',','.')}} USD/24hs

{{number_format($rentNice*30*$BTC_USD,2,',','.')}} USD/30dias

{{$placasHive}} {{$placasHive}}

Placas
@endif @if(Auth::User()->via())

{{number_format(($hashrate_24hour/1000000000000),2,'.',',')}} TH/s

Hash Rate BTC

{{number_format($rentVia,6,'.',',')}} BTC/24hs

Rentabilidad BTC

{{number_format(( $rentVia * $BTC_USD ),2,'.',',')}} USD/24hs

{{number_format(($rentVia * 30) * $BTC_USD,2,',','.')}} USD/30 dias

{{$active_workers}}{{$active_workers+$unactive_workers}}

Equipos
@endif
@if(0)

BTC Rig's

@if($rigsNice != null) @foreach ($rigsNice->miningRigs as $rigs) @foreach ($rigs->devices as $placa) @if ($placa->status->description == 'Mining'||$placa->status->description == 'Inactive') @endif @endforeach
{{$rigs->name}}
Estado Marca Modelo Hashrate Temperatura Fans
{{str_replace('NVIDIA', '', $placa->name)}} {{number_format(@$placa->speeds[0]->speed,2,',','.') }}MH/s {{ round($placa->temperature) }}ºC {{ round($placa->revolutionsPerMinutePercentage) }}%
@endforeach @else

No Existen Registros


@endif
@endif @if(Auth::User()->hive())

Rig's

@if(count($rigsHive) > 0) @foreach ($rigsHive as $granja) @if($granja != null) @foreach ($granja as $rig) @if(@$rig['gpu_stats'] != NULL) @foreach ($rig['gpu_stats'] as $gpu) @if(isset($gpu['hash'])) @else @endif @endforeach @endif @endforeach @endif @endforeach
Estado Marca Modelo Hashrate CPU Temp Fan's
{{$rig['name']}}
{{@$gpu['model']}} {{number_format($gpu['hash'], 0, '.', ',') }}MH/s {{ round($gpu['temp']) }}ºC {{ round($gpu['fan']) }}%
{{@$gpu['model']}} N/a {{ round($gpu['temp']) }}ºC {{ round($gpu['fan']) }}%
@else

No Existen Registros


@endif
@endif @if(Auth::User()->via())

BTC ASIC's

@foreach (Auth()->user()->organizaciones as $organizacion) @if($organizacion->api_key_viabtc != null) @foreach ($organizacion->equipos as $equipo) @if($equipo->worker_status == "active") @else @endif @if($equipo->reject_rate >= 0.5) @else @endif @endforeach @endif @endforeach
Nombre Estado Modelo Hash Rate 24 Hs Reject Ver
{{ $organizacion->nombre }} {{ $organizacion->active_workers }} / {{ $organizacion->active_workers + $organizacion->unactive_workers}} {{number_format(($organizacion->hashrate_24hour/1000000000000),2,'.',',')}} TH/s
{{ $equipo->worker_name }}{{ $equipo->group_name }} {{number_format(($equipo->hashrate_24hour/1000000000000),2,'.',',')}} TH/s{{number_format($equipo->reject_rate,2,'.',',')}} %{{number_format($equipo->reject_rate,2,'.',',')}} %
@endif

Crypto Monedas

@endsection @section('javascript') @endsection