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

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

--}}
{{-- Approve --}}
{{--
Terms for transaction 24-3
--}}
{{-- --}}
Product Name {{ $row->ad->title }}
Date {{ date('d M Y', strtotime($row->confirmation_due_date)) }}
Escrow Price (KSh) {{ $row->price }} KSh
Payment Status @if ($row->allStatus->contains('status', 20))
Paid
@else
Unpaid
@endif
Escrow Commission {{ getSetting()->escrow_fee }} % or KSh {{ $row->escrow_fee }} will be paid by {{ $row->fee_pay_strategy }}
Buyer Info

{{ $row->buyer->name }}

{{ $row->buyer->email }}

Seller Info

{{ $row->seller->name }}

{{ $row->seller->email }}

inspection period {{ $row->inspection_period }} calendar day(s)
Descriptions {!! $row->description !!}
@if($row->currentStatus->status == 0)
@csrf @if($row->seller_id == $user->id) @endif
@else @if($row->currentStatus->status == 99) The Escrow has been cancelled @endif @endif

Please talk to the participant to join this escrow

@endsection @push('scripts') @endpush