@extends('layouts.app') @section('title', 'Disputes') @push('styles') @endpush @section('content')

Disputes

@if(isset($disputes) && $disputes->count()) @foreach($disputes as $dispute) @endforeach
ID Transaction Reason Status Date Action
DSP-{{ str_pad($dispute->id, 5, '0', STR_PAD_LEFT) }} ESC-{{ str_pad($dispute->escrow_transaction_id, 5, '0', STR_PAD_LEFT) }} {{ Str::limit($dispute->reason, 50) }} {{ ucfirst(str_replace('_', ' ', $dispute->status)) }} {{ $dispute->created_at->format('M d, Y') }} Chat View
@include('partials.table-pagination', ['paginator' => $disputes, 'label' => 'disputes']) @else

No disputes

{{ request('status') ? 'No disputes match your filter.' : 'Great news! You have no disputes.' }}

@endif
@endsection