@extends('front.layouts.master') @section('main_content')

{{ $property->name }}

Description

{!! $property->description !!}

Photos

@if($property->photos->count() == 0) No Photos Available @else @foreach($property->photos as $photo) @endforeach @endif

Videos

@if($property->videos->count() == 0) No Videos Available @else @foreach($property->videos as $video) @endforeach @endif

Share

Related Properties

Agent

@if($property->agent->photo != null) @else @endif

{{ $property->agent->name }}

{{ $property->agent->designation }}

@if($property->agent->phone != '') @endif @if($property->agent->facebook != '' || $property->agent->twitter != '' || $property->agent->instagram != '' || $property->agent->linkedin != '') @endif
Posted On: {{ $property->created_at->format('d M, Y') }}
Email: {{ $property->agent->email }}
Phone: {{ $property->agent->phone }}
Social:
    @if($property->agent->facebook != '')
  • @endif @if($property->agent->twitter != '')
  • @endif @if($property->agent->instagram != '')
  • @endif @if($property->agent->linkedin != '')
  • @endif

Features

Price ${{ $property->price }}
Location {{ $property->location->name }}
Type {{ $property->type->name }}
Purpose {{ $property->purpose }}
Bedroom: {{ $property->bedroom }}
Bathroom: {{ $property->bathroom }}
Size: {{ $property->size }} sqft
Floor: {{ $property->floor }}
Garage: {{ $property->garage }}
Balcony: {{ $property->balcony }}
Address: {{ $property->address }}
Built Year: {{ $property->built_year }}

Amenities

    @php $amenity_arr = explode(',', $property->amenities); $amenity = \App\Models\Amenity::whereIn('id', $amenity_arr)->get(); @endphp @foreach($amenity as $item)
  • {{ $item->name }}
  • @endforeach
@if($property->map != '')

Location Map

{!! $property->map !!}
@endif

Enquery Form

@csrf
@endsection