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

Offers

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