@extends('frontend.layouts.app') @section('styles') @endsection @section('content')

{{ $property->title }}

place {{ $property->address }}
@if($property->featured == 1) star @endif Bedroom: {{ $property->bedroom}} Bathroom: {{ $property->bathroom}} Area: {{ $property->area}} Sq Ft

${{ $property->price }}

@if(!$property->gallery->isEmpty())
@include('pages.properties.slider')
@else
@if(Storage::disk('public')->exists('property/'.$property->image) && $property->image) {{$property->title}} @endif
@endif
{!! $property->description !!}
@if($property->features)
  • Features
  • @foreach($property->features as $feature)
  • {{$feature->name}}
  • @endforeach
@endif
Floor Plan
@if(Storage::disk('public')->exists('property/'.$property->floor_plan) && $property->floor_plan) {{$property->title}} @endif
Location
@if($videoembed)
Video
{!! $videoembed !!}
@endif
Near By
{!! $property->nearby !!}
{{ $property->comments_count }} Comments @auth
@endauth
@foreach($property->comments as $comment) @if($comment->parent_id == NULL)
{{ $comment->users->name }} {{ $comment->created_at->diffForHumans() }} @auth Replay @endauth
{{ $comment->body }}
@endif @foreach($comment->children as $commentchildren)
{{ $commentchildren->users->name }} {{ $commentchildren->created_at->diffForHumans() }}
{{ $commentchildren->body }}
@endforeach @endforeach @auth
Leave a comment
@csrf
@endauth @guest @endguest
{{-- End ./COL M8 --}}
  • Contact with Agent
  • @if($property->user)
    {{ $property->user->username }}
    {{ $property->user->name }}
    {{ $property->user->email }}

    {{ $property->user->about }}

    Profile
    @endif
  • @csrf
{{-- RATING --}} @php $rating = ($rating == null) ? 0 : $rating; @endphp @endsection @section('scripts')