@extends('layouts.master') @section('title', 'Retiros') @section('content')

Gestor - Retiros {{ $cliente->name }}

{{ number_format(($cliente->saldoDisponiblePoolRawETH() * $ETH_USD), 2, '.', ',') }} USD

{{$cliente->porcentajePoolETH()}}
{{ $cliente->saldoDisponiblePoolETH() }} ≈ {{number_format(($cliente->saldoDisponiblePoolRawETH() * $ETH_USD), 2, '.', ',')}} U$D

Total en Pool

{{ number_format(($cliente->saldoDisponibleViaRaw() * $BTC_USD) + ($cliente->saldoDisponibleNiceRaw() * $BTC_USD) + ($cliente->saldoDisponibleRawETH() * $ETH_USD), 2, '.', ',') }}USD

{{ $cliente->saldoDisponibleViaRaw() + $cliente->saldoDisponibleNiceRaw()}} BTC ≈ {{number_format((($cliente->saldoDisponibleViaRaw()+$cliente->saldoDisponibleNiceRaw()) * $BTC_USD), 2, '.', ',')}} U$D
{{ $cliente->saldoDisponibleETH() }} ≈ {{number_format(($cliente->saldoDisponibleRawETH() * $ETH_USD), 2, '.', ',')}} U$D

Total Disponible Para Retirar

{{ number_format(($cliente->retirosTotalRaw() * $BTC_USD) + ($cliente->retirosTotalRawETH() * $ETH_USD), 2, '.', ',') }} USD

{{ $cliente->retirosTotal() }} ≈ {{number_format(($cliente->retirosTotalRaw() * $BTC_USD), 2, '.', ',')}} U$D
{{ $cliente->retirosTotalETH() }} ≈ {{number_format(($cliente->retirosTotalRawETH() * $ETH_USD), 2, '.', ',')}} U$D

Total Retirado

Validas

BTC: {{ $cliente->billeteraTruncada() }}
ETH: {{ $cliente->billeteraTruncadaETH() }}

Billeteras

Retiros

@if(count($cliente->retiros)) @foreach ($cliente->retiros->reverse() as $retiro) @endforeach
Monto Descripción Fecha Ejecución Estado
{{ $retiro->monto() }}
{{ $retiro->montoUSD() }}
{{ @$retiro->descripcion }} {{ date('d/m/y - H:i' , strtotime($retiro->created_at)) }}hs {{$retiro->estado->nombre}}
@else

No Existen Registros


@endif

ID Trust

@foreach ($cliente->organizaciones as $organicacion) @if($organicacion->eth != null) {{$organicacion->nombre }}: Blockchain
@endif @endforeach
@endsection @section('javascript') @endsection