@extends('web.layouts.app') @section('content')
{{-- {{ business_type($property) }} --}}

{{ $property->name ?? '' }}

{{ $property->street_address ?? '' }} {{ $property->city ?? '' }} {{ $property->state ?? '' }} {{ $property && $property->country ? $property->country->name : '' }}

{{--

AED {{ $property ? number_format($property->price) : '' }}

$ {{ $property ? number_format($property->dollar_price) : '' }}

/month
--}}

Gallery

@php $mediaItems = $property ? $property->getMedia('property-image') : []; @endphp @if($mediaItems)
@foreach($mediaItems as $index => $mediaItem) @php $image_url = $mediaItems[$index]->getUrl() ; @endphp
@endforeach
@foreach($mediaItems as $index => $mediaItem) @php //$image_url = config('kenzie.storage_url').$mediaItems[$index]->getUrl() ; $image_url = $mediaItems[$index]->getUrl() ; @endphp
@endforeach
@else @endif
@if($property->description)

Description

{!! $property->description ?? '' !!}

@endif

Property Details

    @if($property->property_id)
  • Property ID : {{ $property->property_id ?? '' }}
  • @endif @if($property->category)
  • Property Type : {{ $property->category ? $property->category->name : '' }}
  • @endif @if(business_type($property))
  • Property Status : For {{ business_type($property) }}
  • @endif @if($property->price)
  • Property Price : AED {{ $property ? number_format($property->price) : '' }}
  • @endif @if($property->rooms)
  • Rooms : {{ $property->rooms ?? '' }}
  • @endif @if($property->beds)
  • Bedrooms : {{ $property->beds ?? '' }}
  • @endif @if($property->baths)
  • Baths : {{ $property->baths ?? '' }}
  • @endif @if($property->garages)
  • Parking : {{ $property->garages ?? '' }}
  • @endif @if($property->year_build)
  • Year Built : {{ $property->year_build ?? '' }}
  • @endif @if($property->propertyarea)
  • Area : {{ $property && $property->propertyarea ? $property->propertyarea->name : ""}}
  • @endif @if($property->community)
  • Community : {{ $property && $property->community ? $property->community->name : ""}}
  • @endif @if($property->size)
  • Size : {{number_format ($property->size) }} Sqft
  • @endif
@if($property->amenities) @include('web.property.details.amenities') @endif
@include('web.property.details.design') {{--@include('web.property.details.nearby')--}} {{--@include('web.property.details.property_video')--}} @include('web.property.details.property_map')
@include('web.property.details.agent_information')
@include('web.property.details.similar_properties') @endsection @push('page_script_footer') @endpush