@extends('template.coin.layouts.base') @section('title', __('Fund History')) @section('css') @endsection @section('content')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if(Session::has('sucmessage'))
{{ Session::get('sucmessage') }}
@endif
Deposit History
@if(!empty($deposits)) @foreach($deposits as $deposit) @endforeach @endif
Tranx Id Amount Wallet Payment Mode Status
Processed At
{{$deposit->txn_id}} {{\Carbon\Carbon::parse($deposit->created_at)->toDayDateTimeString()}}
{{$deposit->dwallet()->dwallet()->wallet_name}} Wallet {{$deposit->dwallet()->sym}} {{number_format($deposit->amount,2,'.',',')}} {{system_settings('currency')}} {{$deposit->dpayment()->name}} {{$deposit->status}} {{ $deposit->processed_at }} {!! get_pay_badge($deposit->status, $deposit->txn_id)!!} {!! get_paydelete_status($deposit->status, $deposit->txn_id) !!}
Withdrawal History
@if(!empty($withdrawals)) @foreach($withdrawals as $withdrawal) @endforeach @endif
Tranx Id Type Amount Withdrawal Mode Status
Processed At
{{$withdrawal->txn_id}} {{\Carbon\Carbon::parse($withdrawal->created_at)->toDayDateTimeString()}}
{{$withdrawal->type}} @if(!empty($withdrawal->dwallet_from())) {{$withdrawal->dwallet_from()->dwallet()->wallet_name}} Wallet -{{$withdrawal->dwallet_from()->sym}} @endif {{number_format($withdrawal->amount,2,'.',',')}} {{system_settings('currency')}} {{$withdrawal->dmode()->name}} @if(!empty($withdrawal->dwallet_to())) {{$withdrawal->dwallet_to()->dwallet()->wallet_name}} Wallet -{{$withdrawal->dwallet_to()->sym}} @endif {{$withdrawal->status}} {{ $withdrawal->processed_at }} {!! get_paydelete_status($withdrawal->status, $withdrawal->txn_id) !!}
@endsection