@extends('layouts.admin') @section('title', 'Dispute Details') @section('content')
← Back to Disputes

Dispute #{{ $dispute->id }}

Merchant

{{ $dispute->merchant->name ?? '-' }} ({{ $dispute->merchant->company_name ?? '' }})

Type

{{ ucwords(str_replace('_',' ', $dispute->dispute_type)) }}

Priority

{{ ucfirst($dispute->priority) }}

Status

{{ ucwords(str_replace('_',' ', $dispute->status)) }}

Description

{{ $dispute->description ?? '-' }}

@if($dispute->resolution)

Resolution

{{ $dispute->resolution }}

@endif
Edit
@csrf @method('DELETE')
@endsection