@extends('user.layouts.main') @php $escrow_status = Config::get('static_array.escrow_status'); @endphp @section('contents')
My Escrow Details
{{-- Seller Profile --}} Seller Profile
{{ $row->ad->title }}
{{--
{{ auth()->user()->email }}

{{ auth()->user()->address }}

--}}
{{--
Terms for transaction 24-3
--}}
{{-- --}}
Product Name {{ $row->ad->title }}
Date {{ date('d M Y', strtotime($row->confirmation_due_date)) }}
Amount (KSh) {{ $row->price}} KSh
Payment Status @if ($row->allStatus->contains('status', 20))
Paid
@else
Unpaid
@endif
Participant e-mail {{ $row->ad->email ?? '' }}
Price {{ $row->price }} KSh
Escrow Commission {{ getSetting()->escrow_fee }} % or KSh {{ $row->escrow_fee }} will be paid by {{ $row->fee_pay_strategy }}
inspection period {{ $row->inspection_period }} calendar day(s)
Descriptions {!! $row->description !!}
@if($row->participant_id == $user->id)

Seller approved the escrow Pay Now

@else

Wating for buyer payment

@endif

Please talk to the participant to join this escrow

@endsection