@extends('admin.master_layout') @section('contant') @push('scripts') @endpush
Total Count

{{ $bdt->count() }}

Total BDT Request

User Image
More info

{{ $bkash->count() }}

Total bKash Request

User Image
More info

{{ $nagad->count() }}

Total Nagad Request

User Image
More info

{{ $rocket->count() }}

Total Rocket Request

User Image
More info

{{ $recharge->count() }}

Total Request Recharge

User Image
More info

{{ $customer->count() }}

Total Customer

More info

Recent Verified Transactions

@php @endphp @foreach($transactions as $transaction) @php try { $cid = $transaction->sender_id; $customer = App\Http\Controllers\TransactionsController::getCustomer($cid); $customerName = $customer->name; $customerContact = $customer->contact; }catch (exception $e) { $customerName = ""; $customerContact = ""; } try { $rid = $transaction->receiver_id; $receiver = App\Http\Controllers\TransactionsController::getReceiver($rid); $receiverName = $receiver->name; $receiverContact = $receiver->contact; }catch (exception $e) { $receiverName = ""; $receiverContact = ""; } @endphp @endforeach
SL Date Customer ID Sender Receiver TrxId Currency Status Amount(BDT)
{{$loop->iteration}} {{$transaction->cdate}} {{$transaction->sender_id}} {{$customerName}} {{$receiverName}} {{$transaction->trx_id}} {{$transaction->currency}} Verified {{number_format($transaction->equivalent_amount, 2)}}
@push('js_scripts') @endpush @endsection