@extends('layouts.admin') @section('title','Payment disputes') @section('page-title','Payment disputes') @section('content')
@forelse($disputes as $dispute)@empty@endforelse
DisputeCustomerPaymentRequestedStatus
{{ $dispute->number }}
{{ $dispute->subject }}
{{ $dispute->customer->name }}
{{ $dispute->customer->email }}
{{ strtoupper($dispute->intent->gateway) }}
{{ $dispute->intent->currency }} {{ number_format($dispute->intent->amount,2) }}
{{ $dispute->intent->currency }} {{ number_format($dispute->requested_amount,2) }}{{ str($dispute->status)->replace('_',' ') }}Review
No payment disputes match these filters.
{{ $disputes->links() }}
@endsection