@extends('user.layouts.master') @section('user_content')
@if(Session::has('token_rate_updated')) @elseif(Session::has('ambassador_updated')) @elseif(Session::has('transfer_updated')) @elseif(Session::has('withdraw_updated')) @endif

Transactions Report


CashWallet Balance: {{$data['sum_deposit'] ? '$'.number_format((float)$data['sum_deposit'], 2, '.', '') : '$00.00'}}

@foreach($cashwallet_history as $cash) @endforeach
# DATE CATEGORY RCVD FRM/PAY TO DESCRIPTION AMOUNT TYPE
{{$loop->index+1}} {{$cash->created_at}} {{$cash->method}} @if($cash->received_from != null) {{$cash->sender->user_name}} @elseif($cash->receiver_id != null) {{$cash->receiver->user_name}} @else System Transactions @endif {{$cash->description}} {{$cash->amount}}$ {{$cash->type}}

Token Balance: {{$data['sum_deposit_token'] ? number_format((float)$data['sum_deposit_token'], 2, '.', '') : '00.00'}}

@foreach($tokenwallet_history as $token) @endforeach
# DATE CATEGORY RCVD FRM/PAY TO DESCRIPTION AMOUNT TYPE
{{$loop->index+1}} {{$token->created_at}} {{$token->method}} @if($token->received_from != null) {{$token->sender->user_name}} @elseif($token->receiver_id != null) {{$token->receiver->user_name}} @else System Transactions @endif {{$token->description}} {{$token->amount}} MIND {{$token->type}}

MIND Balance: {{$data['sum_deposit_bonus'] ? number_format((float)$data['sum_deposit_bonus'], 2, '.', '') : '00.00'}}

@foreach($bonuswallet_history as $bonus) @endforeach
# DATE CATEGORY RCVD FRM/PAY TO DESCRIPTION AMOUNT TYPE STATUS
{{$loop->index+1}} {{$bonus->created_at}} {{$bonus->method}} @if($bonus->received_from != null) {{$bonus->sender->user_name}} @elseif($bonus->receiver_id != null) {{$bonus->receiver->user_name}} @else System Transactions @endif {{$bonus->description}} {{$bonus->amount}} MIND {{$bonus->type}} {{$bonus->status}}

Staking Balance: {{$data['sum_deposit_staking'] ? number_format((float)$data['sum_deposit_staking'], 2, '.', '') : '00.00'}}

@foreach($StakingWallet_history as $bonus) @endforeach
# DATE CATEGORY RCVD FRM/PAY TO DESCRIPTION AMOUNT TYPE STATUS
{{$loop->index+1}} {{$bonus->created_at}} {{$bonus->method}} @if($bonus->received_from != null) {{$bonus->sender->user_name}} @elseif($bonus->receiver_id != null) {{$bonus->receiver->user_name}} @else System Transactions @endif {{$bonus->description}} {{$bonus->amount}} MIND {{$bonus->type}} {{$bonus->status}}

Ambassador Balance: {{$data['sum_deposit_ambassador'] ? number_format((float)$data['sum_deposit_ambassador'], 2, '.', '') : '00.00'}}

@foreach($AmbassadorWallet_history as $bonus) @endforeach
# DATE CATEGORY RCVD FRM/PAY TO DESCRIPTION AMOUNT TYPE STATUS
{{$loop->index+1}} {{$bonus->created_at}} {{$bonus->method}} @if($bonus->received_from != null) {{$bonus->sender->user_name}} @elseif($bonus->receiver_id != null) {{$bonus->receiver->user_name}} @else System Transactions @endif {{$bonus->description}} {{$bonus->amount}} MIND {{$bonus->type}} {{$bonus->status}}

Coupon Balance: {{$data['sum_deposit_coupon'] ? number_format((float)$data['sum_deposit_coupon'], 2, '.', '') : '$00.00'}}

@foreach($CouponWallet_history as $bonus) @endforeach
# DATE CATEGORY RCVD FRM/PAY TO DESCRIPTION AMOUNT TYPE STATUS
{{$loop->index+1}} {{$bonus->created_at}} {{$bonus->method}} @if($bonus->received_from != null) {{$bonus->sender->user_name}} @elseif($bonus->receiver_id != null) {{$bonus->receiver->user_name}} @else System Transactions @endif {{$bonus->description}} {{$bonus->amount}}$ {{$bonus->type}} {{$bonus->status}}

@endsection