@extends('layouts/layoutMaster')
@section('title', 'Listing Create')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('page-script')
@endsection
@section('content')
Listing / Overview
-
-
-
-
-
- Status:
- {{$listing->status}}
- Category:
- {{$listing->category_code}}
- Property Type:
- {{$listing->property_type}}
- Listing Expiry Date:
- {{$listing->expiry_date}}
- Price:
-
${!! Helper::amountFormat($listing->price) !!}
- Vendor :
- {{$listing->vendor?->first_name}} {{$listing->vendor?->last_name}}
- Property Address :
-
{{$listing->address?->unit_number ? $listing->address->unit_number."/" : ""}}{{$listing->address->street}}, {{$listing->address->city}}
@foreach($listing->portals() as $key => $portal)
- {{$key ==0 ? 'Available Portals :' : ''}}
- {{$portal->name}}
@endforeach
- Bedrooms :
- {{$listing->bedrooms}}
- Bathrooms :
- {{$listing->bathrooms}}
- Ensuites :
- {{$listing->ensuites}}
- Toilets :
- {{$listing->toilets}}
- Garage spaces :
- {{$listing->garage_spaces}}
- Carport spaces :
- {{$listing->carport_spaces}}
- Open car spaces :
- {{$listing->open_car_spaces}}
- Living areas :
- {{$listing->living_areas}}
- Year Built :
- {{$listing->year_built}}
- New Construction :
- {{$listing->is_new_construction ? 'Yes' : "No"}}
- Coastal Waterfront :
- {{$listing->is_coastal_waterfront ? 'Yes' : "No"}}
- Swimming Pool :
- {{$listing->has_swimming_pool ? 'Yes' : "No"}}
- Tag :
- {{implode(", ", $listing->full_tag_names)}}
@foreach($listing->photos as $photo)
@endforeach
@foreach($listing->floorplans as $floorplan)
@endforeach
@foreach($listing->documents as $document)
@endforeach
- Headline :
- {{$listing->headline}}
- Description :
- {{$listing->description}}
- Online Tour 1 :
- {{$listing->online_tour1}}
- Online Tour 2 :
- {{$listing->online_tour2}}
- Third party website link :
- {{$listing->third_party_link}}
@endsection