@extends('admin.layout.dashboard-template') @section('content')
| Employee ID | : | {{$data->employeeID }} |
| Mobile Number | : | {{$data->mobile_number }} |
| : | {{$data->email }} | |
| Designation | : | {{$data->designation }} |
| Total Commission | : | Rs.{{$data->total_commission }} |
| Gpay Name | : | {{$data->gpay_number }} |
| Gpay Number | : | {{$data->gpay_name }} |
| AccountType | : | {{$data->account_type }} |
| Current Balance | : | Rs. {{ $data->wallet ? number_format($data->wallet->balance, 2) : '0.00' }} |
| Total Transactions | : | {{ $data->wallet && $data->wallet->transactions ? $data->wallet->transactions->count() : 0 }} |
| Sl.No | Customer Name | Phone Number | Service | Agent | Status | Action |
|---|
| # | Date | Type | Amount | Note |
|---|---|---|---|---|
| {{ $key + 1 }} | {{ date('d M Y h:i A', strtotime($transaction->created_at)) }} | @if($transaction->type == 'credit') Credit @else Debit @endif | Rs. {{ number_format($transaction->amount, 2) }} | {{ $transaction->note ?? '-' }} |
| No wallet transactions found | ||||