@extends('dashboard.layout', ['user'=>$user, 'id' => 21]) @section('dashboard')
@if ($profit_generated >= 0) +{{ round($profit_generated,0) }} @else {{ round($profit_generated,0) }} @endif
Profit Générated
(USDT)
{{ $amount_fees }}
Fees Paid
(USDT)
{{ $amount_binance }}
Paid via Binance
{{ $amount_stripe }}
Paid via Stripe
@if ($bill_to_paid === false)
You have one pending invoice !
You need to pay to do access new arbitrages.
{{$amount_to_paid}} USDT
Pay now
@else
You don't have anything to pay
@endif
@if (count($invoices) > 0)
@foreach($invoices as $invoice) @endforeach
Invoice Name Date Amount
Invoice {{$invoice->invoice_number}} {{$invoice->date}} {{$invoice->myfo_fees}} @if ($user->admin_test === 0) Download @else @endif
@else

You do not have any invoices available at this time.

@endif @endsection