@extends('layouts.app') @section('title', 'buyer | '.config('app.name')) @section('style') @endsection @section('content')

{{ Request::segment(2) }} Offers

{{-- --}} @forelse($data as $offer) @empty @endforelse
Offer ID Property MLS Property Address Buyer Escrow Company Escrow Officer Type ActionChat
{{$offer->id}} {{$offer->propertyMLS}} {{$offer->propertyZip}} {{$offer->buyers}} {{$offer->escrowCompany ? $offer->escrowCompany : ''}} {{$offer->escrowOfficer ? $offer->escrowOfficer : ''}} @if($offer->type === "completed") @php $offerDetail = App\Models\Offers::getOfferDetailOfferById($offer->id); $offerBuyer = \App\Models\OfferBuyers::where('offer_id', $offer->id)->first(); $token = csrf_token() @endphp @if (!is_null($offerBuyer->contract)) @if($offer->buyer_signature == 1) @if($offerBuyer->seller_signature == 0) @endif @endif @endif @endif
No record found.
@endsection @section('script') @endsection