@extends('layouts.user') @section('title') @lang('My escrows') @endsection @section('breadcrumb') @lang('My escrows') @endsection @section('content')
@forelse ($escrows as $item) @empty @endforelse
@lang('Recipient') @lang('Amount') @lang('Charge') @lang('Details') @lang('Status') @lang('Date') @lang('Action')
{{$item->recipient->email}} {{amount($item->amount,$item->currency->type,2)}} {{$item->currency->code}} {{amount($item->charge,$item->currency->type,2)}} {{$item->currency->code}} {{Str::limit($item->description,80)}} @if ($item->status == 1) @lang('Released') @elseif ($item->status == 0) @lang('On hold') @elseif ($item->status == 3) @lang('Disputed') @elseif ($item->status == 4) @lang('Closed') @endif {{dateFormat($item->created_at)}} @if ($item->status != 1 && $item->status != 4) @lang('Release') @lang('Dispute') @else @lang('N/A') @endif
@lang('No data found!')
@endsection @push('script') @endpush