| {{ $depositWithdrawal['loginId'] }} |
{{ $depositWithdrawal['date'] }} |
{{ $depositWithdrawal['comment'] }} |
{{ number_format($depositWithdrawal['profit'], $fractionDigit, '.', '') }} |
{{-- For Deposit withdrawal with lotus --}}
@if ($reportType == CommonConstants::TELEGRAM_PREFERENCE['DEPOSIT_WITHDRAWAL']['REPORT_TYPE'])
{{-- lotusShare with % --}}
@if (!is_null($depositWithdrawal['lotusShare']))
{{ number_format($depositWithdrawal['lotusShare'], 2) }} %
@else
-
@endif
|
{{-- lotusValue --}}
@if (!is_null($depositWithdrawal['lotusValue']))
{{ number_format($depositWithdrawal['lotusValue'], $fractionDigit, '.', '') }}
@else
-
@endif
|
@endif
@php
$totalprofit += $depositWithdrawal['profit'];
// For Deposit withdrawal with lotus
if ($reportType == CommonConstants::TELEGRAM_PREFERENCE['DEPOSIT_WITHDRAWAL']['REPORT_TYPE']) {
$totalLotusValue += $depositWithdrawal['lotusValue'];
}
@endphp
@endforeach
{{-- Totals row --}}
| Total Amount |
{{ number_format($totalprofit, $fractionDigit, '.', '') }} |
{{-- For Deposit withdrawal with lotus --}}
@if ($reportType == CommonConstants::TELEGRAM_PREFERENCE['DEPOSIT_WITHDRAWAL']['REPORT_TYPE'])
|
{{ number_format($totalLotusValue, $fractionDigit, '.', '') }} |
@endif