{{__('disputes.disputes_listing')}}
| {{ __('disputes.ref_label') }} | {{ __('disputes.buyer_name_label') }} | {{ __('disputes.saller_name_label') }} | {{ __('disputes.date_lable') }} | {{ __('disputes.satatus_label') }} |
|---|---|---|---|---|
| {{$single->id}} | @if(!empty($buyer)) {{$buyer->full_name}} @endif | @if(!empty($seller)) {{$seller->full_name}} @endif | {{date($date_format, strtotime($single->created_at))}} | {{$disputeStatus['text']}} |
@if(!empty($dispute_id))
@livewire('admin.disputes.dispute-detail',array(
'dispute_id' => $dispute_id,
'date_format' => $date_format,
'allowFileSize' => $allowFileSize,
'allowFileExt' => $allowFileExt,
'currency_symbol' => $currency_symbol,
))
@else
{{__('disputes.select_dispute')}}
@endif
{{__('disputes.select_dispute')}}