@extends('network.layouts.app') @section('title', 'Dashboard') @section('content')
@if (session('success')) @endif @if (session('error')) @endif

{{$listing->title}}

Agent Info
Assigned to
{{ $listing->agent->full_name ?? ''}}
Status
{{ $listing->status }}
Sale Type
{{ $listing->sale_type }}
MLS #
{{ $listing->mls_id }}
Price
${{ number_format($listing->price, 2) }}
Price Reduced
{{ $listing->price_reduced ? 'Yes' : 'No' }}
Listing Rep.
{{ $listing->agent->full_name ?? '' }}
Location Info
Address
{{ $listing->address }} {{ $listing->address2 ? ', ' . $listing->address2 : '' }}
City
{{ $listing->city }}
State
{{ $listing->state }}
Zip Code
{{ $listing->zip }}
County
{{ $listing->county }}
Latitude
{{ $listing->latitude }}
Longitude
{{ $listing->longitude }}
Lead History
@foreach($leadhistory as $month => $contactsInMonth)
{{ $month }}
@foreach($contactsInMonth as $contact)
Lead: {{ $contact->conversion }}

Assigned to : {{ $contact->agent->full_name ?? 'N/A' }}

Contact : {{ $contact->full_name ?? 'N/A' }}

  • First Name: {{ $contact->fname }}
  • Last Name: {{ $contact->lname }}
  • Listing : {{ $contact->listing->title }}
@endforeach @endforeach
Property Resources
Aerial Map
@if(!empty($listing->aerial_map_url)) View PDF Document @else Not Available @endif
Locator Map
@if(!empty($listing->locator_map_url)) View PDF Document @else Not Available @endif
Topo Map
@if(!empty($listing->topo_map_url)) View PDF Document @else Not Available @endif
Brochure
@if(!empty($listing->brochure_url)) View Brochure @else Not Available @endif
Dates & Status
Listed Date
{{ $listing->listed_date }}
Expiration Date
{{ $listing->expiration_date }}
Created
{{ $listing->created_at }}
Modified
{{ $listing->updated_at }}
Property Features
Bedrooms
{{ $listing->bedroom }}
Bathrooms
{{ $listing->bathroom }}
Dwelling Sq Ft
{{ $listing->dwelling }}
HOA Annually
{{ $listing->hoa_annually }}
Taxes Annually
{{ $listing->taxes_annually }}
Types
{{ $listing->types }}
Tags
{{ $listing->tags }}
About
{!! $listing->description !!}
@if(!empty($listing->map_embed))
Location Map
@endif
@if(!empty($listing->video_embed_primary))
Video Tour
@endif
@if(!empty($listing->vr_tours))
Virtual Tour
@endif
Contacts
@forelse ($contacts as $contact) @empty @endforelse
Id Name Email Phone Inquiry Created
{{ $contact->id }} {{ $contact->full_name }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->inquiry }} {{ $contact->created_at->format('Y-m-d') }}
No Contact found.
@endsection