Financial statistics background

Финансовая статистика

ПОПОЛНЕНИЯ И ВЫПЛАТЫ

Общая сумма депозитов:

{{ number_format($totalDepositSum, 0, ',', ' ') }}

ПОСЛЕДНИЕ ПОПОЛНЕНИЯ

@foreach($totalDeposit as $deposit)

Логин:

{{ $deposit->user->name }}

Сумма пополнения:

{{ number_format($deposit->amount, 0, ',', ' ') }}


@endforeach

Общая сумма выплат:

{{ number_format($totalWithdrawSum, 0, ',', ' ') }}

ПОСЛЕДНИЕ ВЫПЛАТЫ

@foreach($totalWithdraw as $withdraw)

Логин:

{{ $withdraw->user->name }}

Сумма выплаты:

{{ number_format($withdraw->amount, 0, ',', ' ') }}


@endforeach