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

{{$listing->title}}

Agent Info
Assigned to
{{ $listing->agent->fname . ' ' . $listing->agent->lname }}
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->fname . ' ' . $listing->agent->lname }}
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 }}
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 !!}
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 }}
@endsection