@extends('layout1') @section('title') {{ $seoSetting->seo_title }} @endsection @section('meta') @endsection @section('frontend-content') @php $slider_section = $sectionControls->where('section_name', 'slider')->first(); @endphp @if ($slider_section->status == 1 && $sliders->count() > 0)
@endif @php $about_section = $sectionControls->where('section_name', 'about_us')->first(); @endphp @if ($about_section->status == 1)
about images

{{ __(' About Us') }}

{!! clean($aboutUs->translation->about_us) !!} @if($aboutUs->translation->about_us){{ __('Read More') }}@endif
@foreach ($counters as $counter)

{{ $counter->qty }}

{{ $counter->translation->title }}

@endforeach
@endif @php $top_property_section = $sectionControls->where('section_name', 'top_property')->first(); @endphp @if ($top_property_section->status == 1 && $top_properties->count() > 0)

{{ __('Top Properties') }}

{{ __('Discover premium homes, investment opportunities, and exceptional value.') }}
@foreach ($top_properties->take($top_property_section->qty) as $property)
properties @if ($property->property_purpose_id == 1) {{ $property->propertyPurpose?->title }} @elseif($property->property_purpose_id == 2) {{ $property->propertyPurpose?->title }} @endif @if ($property->urgent_property == 1) {{ __('Urgent') }} @endif
@if ($property->property_purpose_id == 1) {{ currency($property->price) }} @elseif ($property->property_purpose_id == 2) {{ currency($property->price) }} / @if ($property->period == 'Daily') {{ __('Daily') }} @elseif ($property->period == 'Monthly') {{ __('Monthly') }} @elseif ($property->period == 'Yearly') {{ __('Yearly') }} @endif @endif {{ $property->title }}
  • {{ $property->number_of_bedroom }} {{ __('Bed') }}
  • {{ $property->number_of_bathroom }} {{ __('Bath') }}
  • {{ $property->area }} {{ __('Sqft') }}
@endforeach
@endif @php $featured_property_section = $sectionControls->where('section_name', 'featured_property')->first(); @endphp @if ($featured_property_section->status == 1 && $featured_properties->count() > 0) @endif @php $urgent_property_section = $sectionControls->where('section_name', 'urgent_property')->first(); @endphp @if ($urgent_property_section->status == 1 && $urgent_properties->count() > 0)

{{ __('Urgent Properties') }}

{{ __('Discover urgent listings with great deals on move-in ready properties.') }}
@foreach ($urgent_properties->take($urgent_property_section->qty) as $property)
top properties
{{ $property->title }} @if ($property->property_purpose_id == 1)

{{ currency($property->price) }}

@elseif ($property->property_purpose_id == 2)

{{ currency($property->price) }} / @if ($property->period == 'Daily') {{ __('Daily') }} @elseif ($property->period == 'Monthly') {{ __('Monthly') }} @elseif ($property->period == 'Yearly') {{ __('Yearly') }} @endif

@endif
@endforeach
@endif @php $service_section = $sectionControls->where('section_name', 'service')->first(); @endphp @if ($service_section->status == 1 && $services->count() > 0)

{{ __('What Are You Looking For') }}

{{ __('Our Comprehensive Real Estate Services, From Buying and Selling to Property Management and Investment Guidance.') }}
@foreach ($services->take($service_section->qty) as $service)

{{ $service->translation?->title }}

{{ $service->translation?->description }}

@endforeach
@endif @php $agent_section = $sectionControls->where('section_name', 'agent')->first(); @endphp @if ($agent_section->status == 1 && $agents->count() > 0)

{{ __('Our Agents') }}

{{ __('Meet our expert real estate team, here to guide you with dedicated service and advice.') }}
@foreach ($agents->take($agent_section->qty) as $agent)
team images {{ $agent->name }}

{{ $agent->address }}

@endforeach
@endif @php $blog_section = $sectionControls->where('section_name', 'blog')->first(); @endphp @if ($blog_section->status == 1 && $blogs->count() > 0)

{{ __('Our Blogs') }}

{{ __('Explore Insights, Tips, and Trends in Real Estate.') }}
@php $colorId = 1; @endphp @foreach ($blogs->take($blog_section->qty) as $index => $blog) @php if ($index % 4 == 0) { $colorId = 1; } $color = ''; if ($colorId == 1) { $color = ''; } elseif ($colorId == 2) { $color = 'oreangr'; } elseif ($colorId == 3) { $color = 'gren'; } elseif ($colorId == 4) { $color = 'blur'; } @endphp
blog items {{ $blog->category?->title }}

{{ $blog->created_at->format('d') }} {{ $blog->created_at->format('m') }} {{ $blog->created_at->format('Y') }}

{{ $blog->comments->where('status', 1)->count() }}
bloger {{ $blog->admin ? $blog->admin->name : '' }}
{{ $blog->title }}

{{ $blog->translation->short_description }}

@php $colorId++; @endphp @endforeach
@endif @php $testimonial_section = $sectionControls->where('section_name', 'testimonial')->first(); @endphp @if ($testimonial_section->status == 1 && $testimonials->count() > 0)

{{ __('Happy Clients') }}

{{ __('Read Real Stories from Our Satisfied Clients and Discover How We Helped Them Find Their Perfect Property.') }}
@foreach ($testimonials->take($testimonial_section->qty) as $testimonial)
Clients

{{ $testimonial->translation->name }}

{{ $testimonial->translation->designation }}

{{ $testimonial->translation->comment }}

@endforeach
@endif @endsection