@extends('user.layouts.main') @section('contents')
{{ $title ?? '' }}
@foreach ($row as $escrow) @endforeach
invoice # Seller Buyer Amount Status Created at Actions
#22-1490 {{ $escrow->seller->name }} {{ $escrow->buyer->name }} {{ $escrow->price }} KSh @if ($escrow->allStatus->contains('status', 20))
Paid
@else
Unpaid
@endif
{{ $escrow->created_at->format('d M Y') }} View
@endsection