@extends('user.layouts.main') @php $escrow_status = Config::get('static_array.escrow_status'); @endphp @section('contents')
Buyer pays to escrow
{{-- --}}
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->participant_id == $user->id) Product Receive @endif
@endsection