@extends('admin.dashboard.layout.app') @section('style') @endsection @section('content') @include('admin.dashboard.layout.header', ['title' => 'Merchant List'])
| Sr. No. | Merchant ID | Merchant Name | Business Name | Phone | Created At | Avail Balance | MWD Disbursement % | IBFT Disbursement % | Collection Service Rate % | Cnic | Address | City | JazzCash | Easypaisa |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $merchant->id }} | {{ $merchant->name }} | {{ $merchant->business_name }} | {{ $merchant->phone }} | {{ optional($merchant->created_at)->format('M d, Y') }} | {{ $merchant->merchantBalance->available_for_withdraw ?? 'NA' }} | {{ $mwd !== null ? $mwd.' %' : 'NA' }} | {{ $ibft !== null ? $ibft.' %' : 'NA' }} | {{ $serviceRate !== null ? $serviceRate.' %' : 'NA' }} | {{ $merchant->cnic }} | {{ $merchant->address }} | {{ $merchant->city }} |
|
|