@extends('layouts.admin') @section('title') @lang('Dispute Details') @endsection @section('breadcrumb')

@lang('Dispute Details')

@lang('Back')
@endsection @section('content')
  • @if ($escrow->status != 1 && $escrow->status != 4) @if (access('escrow close')) @lang('Close Dispute') @endif @if (access('escrow return payment')) @lang('Pay To Invitor') @lang('Pay To Invitee') @endif @elseif($escrow->returned_to != null) @lang('Payment returned to '.$escrow->returned_to) @endif
  • @lang('Disputed By : ') {{$escrow->disputedBy->email}}
  • @lang('Invited By : ') {{$escrow->user->email}}
  • @lang('Invited To : ') {{$escrow->recipient->email}}
  • @lang('Amount : ') {{amount($escrow->amount,$escrow->currency->type,2)}} {{$escrow->currency->code}}
  • @lang('Charge : ') {{amount($escrow->charge,$escrow->currency->type,2)}} {{$escrow->currency->code}}
  • @lang('Charge Bearer : ') @if ($escrow->pay_charge == 1) {{ $escrow->user->email}} @else {{ $escrow->recipient->email}} @endif
  • @lang('Description : ')
@lang('Escrow : #'.$escrow->trnx)
    @forelse ($messages as $item) @if ($item->user_id != null) @if ($item->user_id == $escrow->user_id)
  • {{$item->user->email}} :
    {{__($item->message)}}

    @if ($item->file) @endif {{diffTime($item->created_at)}}
  • @else
  • {{$item->user->email}} :
    {{__($item->message)}}

    @if ($item->file) @endif {{diffTime($item->created_at)}}
  • @endif @else
  • {{__($item->message)}}

    @if ($item->file) @endif {{diffTime($item->created_at)}}
  • @endif @empty
  • @lang('No messages yet!!')

  • @endforelse
@if ($escrow->status == 3) @endif
@if (access('escrow return payment')) @endif @if (access('escrow close')) @endif @endsection @push('script') @endpush