@extends('layouts.master') @section('title', 'Equipos') @section('content')
@if($organizacion->nice())

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

Hash Rate ETH

{{number_format($rentNice,4,',','.')}} mBTC/24hs

Rentabilidad BTC

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

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

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

Placas
@endif @if($organizacion->hive())

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

Hash Rate ETH

{{number_format($rentHive,4,',','.')}} ETH/24hs

Rentabilidad ETH

{{number_format($rentHive*$ETH_USD,2,',','.')}} USD/24hs

{{number_format(($rentHive*30)*$ETH_USD,2,',','.')}} USD/30dias

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

Placas
@endif @if($organizacion->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($organizacion->nice())

BTC Rig's {{$organizacion->nombre}}

@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($organizacion->hive())

ETH Rig's {{$organizacion->nombre}}

@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($organizacion->via())

BTC ASIC's {{$organizacion->nombre}}

@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
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
@endsection @section('javascript') @endsection