@extends('app') @section('title', $property->title . ' - ' . __('app.site_title')) @section('content') @php $images = getAllImages($property->company_id, $property->id); $mainImage = getMainImage($property->company_id, $property->id); $fallbackImage = asset('assets/images/dubrovnik1.jpg'); @endphp
+385 20 451 800
{{ __('app.contact_us') }}
{{ $property->location_main ?? __('app.luxury_property') }}
{{ $property->title }}
@if(empty($property->description))

{{ __('app.no_description') }}

@else {!! nl2br(e($property->description)) !!} @endif

{{ __('app.property_summary') }}

  • {{ __('app.price') }}: {{__('app.on_request')}}
  • {{ __('app.property_type') }}:

    {{ $property->type_name }}

  • @if($property->area)
  • {{ __('app.area') }}:

    {{ number_format($property->area) }} m²

  • @endif @if($property->view)
  • {{ __('app.view') }}:

    {{ str_replace(';', ', ', $property->view) }}

  • @endif @if($property->bedrooms)
  • {{ __('app.bedrooms') }}:

    {{ $property->bedrooms }}

  • @endif @if($property->bathrooms)
  • {{ __('app.bathrooms') }}:

    {{ $property->bathrooms }}

  • @endif @if($property->parking)
  • {{ __('app.parking') }}:

    {{ $property->parking }}

  • @endif
  • {{ __('app.location') }}:

    {{ $property->location_name ?? 'Dubrovnik' }}

{{-- gallery view of the property --}}
@php $embedUrl = getYoutubeEmbedUrl($property->youtube_link ?? null); @endphp @if($embedUrl)
@endif

{{ __('app.contact_agent') }}


{{ __('app.contact_intro') }}


{{ __('app.email') }}:
info@imbnekretnine.hr
{{ __('app.phone') }}:
+385 91 333 5480
+385 91 331 5480

{{ __('app.property_inquiry') }}

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(isset($similarProperties) && $similarProperties->count() > 0)
{{ __('app.similar_properties') }}
{{ __('app.you_might_also_like') }}
@endif
@endsection