@php( $headerOption = \App\Http\Controllers\Controller::getHeaderOptions( $title ?? '', $subTitle ?? '', isset($filters) ? $filters : [], isset($advancedFilters) ? $advancedFilters : [] ) ) @php($headingOptions = [ ' My Merchants', ]) @extends('admin.layouts.layout', $headerOption) @section('content')
| # | Merchant | MID | Total Volume | Transactions | CB Volume | CB Count | CB Ratio | Return Vol | Return Count | Return Ratio | Risk Level | Chargebacks | Details |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $row->dba ?? '—' }} | {{ $row->mid ?? '—' }} |
${{ number_format($row->total_volume ?? 0, 2) }} | {{ number_format($row->total_transactions ?? 0) }} | ${{ number_format($row->chargeback_volume ?? 0, 2) }} | {{ number_format($row->chargeback_count ?? 0) }} | @php($cbR = $row->chargeback_ratio ?? 0) {{ $cbR }}% | ${{ number_format($row->return_volume ?? 0, 2) }} | {{ number_format($row->return_count ?? 0) }} | @php($rtR = $row->return_ratio ?? 0) {{ $rtR }}% | @if(($row->chargeback_ratio ?? 0) > 1) High CB @elseif(($row->return_ratio ?? 0) > 5) High Return @else Normal @endif | ||
| No risk data found for the selected filters. | |||||||||||||