@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')
{{-- Legend --}}
    Return Ratio > 5%     Chargeback Ratio > 1%
{{-- Filter bar --}}
Clear
@forelse($data ?? [] as $i => $row) row_class) && $row->row_class === 'table-warning-orange') style="background:#ffe5b4" @endif> @empty @endforelse
# 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.
@if(isset($data) && is_object($data) && method_exists($data, 'links')) @include('admin.components.pagination-inner') @endif
@endsection @push('page_script') @endpush