@extends('layouts.app') @section('sidebar') @include('sidebar') @stop @section('content')

Daily Report

@if(Session::has('success'))
{!! Session::get('success') !!}
@endif
@php $TotalWire = 0; $TotalLA = 0; $TotalWire_withdrawal = 0; $TotalLA_withdrawal = 0; @endphp @if (count($records)) @foreach ($records as $recordKey => $record) @if (!empty($record['deposit-inr-request']['total_inr']) || !empty($record['deposit-wire-request']['total_wire']) || !empty($record['deposit-upi-request']['total_upi']) || !empty($record['withdrawal-inr-request']['total_withdrawal']) || !empty($record['withdrawal-wire-request']['total_withdrawal']) || !empty($record['withdrawal-upi-request']['total_withdrawal'])) @php $TotalWire += $record['deposit-wire-request']['total_wire'] ?? 0; $TotalLA += $record['deposit-inr-request']['total_inr'] ?? 0; $TotalWire_withdrawal += $record['withdrawal-wire-request']['total_withdrawal'] ?? 0; $TotalLA_withdrawal += $record['withdrawal-inr-request']['total_withdrawal'] ?? 0; @endphp {{-- withdrawal start --}} {{-- withdrawal end --}} {{-- --}} @endif @endforeach @else @endif

Date : {{ $requestDate != '' ? $requestDate : 'N/A' }}

# Name Deposit Withdraw Action
Wire Total Wire INR Local Total LA INR UPI Total UPI INR Wire Total Wire INR Local Total LA INR UPI Total UPI INR
MT4 Account Wallets MT4 Account Wallets MT4 Account Wallets Clients IB Clients IB Clients IB
{{ $recordKey++ }} {{ $record['bank'] }} ${{ $record['deposit-wire-request']['mt4account'] }} ${{ $record['deposit-wire-request']['wallet'] }} ₹{{ round($record['deposit-wire-request']['total_wire'],2) ?? 0 }} ${{ $record['deposit-inr-request']['mt4account'] }} ${{ $record['deposit-inr-request']['wallet'] }} ₹{{ round($record['deposit-inr-request']['total_inr'],2) ?? 0 }} ${{ $record['deposit-upi-request']['mt4account'] }} ${{ $record['deposit-upi-request']['wallet'] }} ₹{{ round($record['deposit-upi-request']['total_upi'],2) ?? 0 }}${{ $record['withdrawal-wire-request']['client'] }} ${{ $record['withdrawal-wire-request']['ib'] }} ₹{{ round($record['withdrawal-wire-request']['total_withdrawal'],2) ?? 0 }} ${{ $record['withdrawal-inr-request']['client'] }} ${{ $record['withdrawal-inr-request']['ib'] }} ₹{{ round($record['withdrawal-inr-request']['total_withdrawal'],2) ?? 0 }} ${{ $record['withdrawal-upi-request']['client'] }} ${{ $record['withdrawal-upi-request']['ib'] }} ₹{{ round($record['withdrawal-upi-request']['total_withdrawal'],2) ?? 0 }}
No Record found
Total Wire INR ₹{{ round($TotalWire,2) ?? 0 }} Total LA INR ₹{{ round($TotalLA,2) ?? 0 }} Total UPI INR ₹{{ round($TotalLA,2) ?? 0 }} Total Wire INR ₹{{ round($TotalWire_withdrawal,2) ?? 0 }} Total LA INR ₹{{ round($TotalLA_withdrawal,2) ?? 0 }} Total UPI INR ₹{{ round($TotalLA_withdrawal,2) ?? 0 }}
@endsection @section('script') {{ Html::script('custom/eModal/eModal.js') }} {{ Html::script('custom/datatables/datatables.bundle.js') }} @endsection