@extends('admin.template.app') @section('title', 'Mobile Banking Requests') @section('content')

Mobile Banking Requests

@forelse ($datas as $key => $data) @empty @endforelse
NO. Date Sender Name Operator Name Account Type Account Number Money Rate Before Balance Amount Service Charge After Balance BD Amount Remark Status Action
{{ $key + 1 }} {{ $data->created_at->format('d M Y h:i A') }} {{ $data->user->name ?? 'N/A' }} {{ $data->operator ?? 'N/A' }} {{ $data->account_type ?? 'N/A' }} {{ $data->number ?? 'N/A' }} {{ $data->money_rate }} {{ $data->before_balance }} {{ $data->amount }} {{ $data->service_charge }} {{ $data->after_balance }} {{ $data->money_rate * $data->amount . ' TK' }} {{ $data->remark }} {{ ucfirst($data->status) }} {{-- {{ ucfirst($data->status) }} --}}
No Data Found
@endsection