@extends('backend.layouts.app') @section('title', 'Show Property') @push('styles') @endpush @section('content')

SHOW PROPERTY

{{$property->title}}
Posted By {{$property->user->name}} on {{$property->created_at->toFormattedDateString()}}

  • Price : ${{number_format($property->price)}}
  • Bedroom : {{$property->bedroom}}
  • Bathroom : {{$property->bathroom}}
  • City : {{$property->city}}
  • State : {{$property->state}}
  • Postcode : {{$property->postcode}}
  • Address : {{$property->address}}
Description
{!!$property->description!!}

MAP

@if($property->floor_plan)

FLOOR PLAN

@if($property->floor_plan)
{{$property->title}}
@endif
@endif @if($videoembed)

PROPERTY VIDEO

{!! $videoembed !!}
@endif @if(!$property->gallery->isEmpty())

GALLERY IMAGE

@endif {{-- COMMENTS --}}

{{ $property->comments_count }} Comments

@foreach($property->comments as $comment) @if($comment->parent_id == NULL)
@if($comment->users->image) @else @if($comment->users->isAdmin()) @elseif($comment->users->isAgent()) @else @endif @endif
{{ $comment->users->name }} {{ $comment->created_at->diffForHumans() }}
{{ $comment->body }}
@if($comment->approved != 1)
@csrf
@endif
@csrf
@endif @foreach($comment->children as $comment)
@if($comment->users->image) @else @if($comment->users->isAdmin()) @elseif($comment->users->isAgent()) @else @endif @endif
{{ $comment->users->name }} {{ $comment->created_at->diffForHumans() }}
{{ $comment->body }}
@if($comment->approved != 1)
@csrf
@endif
@csrf
@endforeach @endforeach

TYPE

{{$property->type}} for {{$property->purpose}}

FEATURES

@foreach($property->features as $feature) {{$feature->name}} @endforeach

FEATURED IMAGE

@if(Storage::disk('public')->exists('property/'.$property->image) && $property->image) {{$property->title}} @else {{$property->title}} @endif arrow_back BACK edit EDIT
@endsection @push('scripts') @if(!empty($site_google_map_api_key)) @else @endif @endpush