@extends('layouts.app') @section('content')
Professional Service

{{ $service->title }}

{{ $service->short_description }}

Invest Today

Fill in the form to get started.

@csrf
@if($service->author_name)
@if($service->author_image_url) {{ $service->author_name }} @else
@endif
Written By {{ $service->author_name }}
@endif
{{-- Assuming short_description is the intro context or part of sections --}}
@foreach($service->sections as $section)
@if($section->type == 'text_block')
@if($section->heading)

{{ $section->heading }}

@endif
{!! $section->content !!}
@elseif($section->type == 'image_left')
@if($section->image_url) Image @endif
@if($section->heading)

{{ $section->heading }}

@endif
{!! $section->content !!}
@elseif($section->type == 'image_right')
@if($section->image_url) Image @endif
@if($section->heading)

{{ $section->heading }}

@endif
{!! $section->content !!}
@elseif($section->type == 'full_width_image')
@if($section->heading)

{{ $section->heading }}

@endif @if($section->image_url)
Full Image
@endif @if($section->content)
{!! $section->content !!}
@endif
@endif
@endforeach

RECENT PROPERTIES

Explore our current exclusive deals.

@forelse($properties->take(3) as $property)
{{ $property->type ?? 'Investment' }}
{{ $property->location }}
{{ $property->location }}

BMV

{{ $property->bmv_percentage }}%

Yield/Profit

{{ $property->yield ?? 'N/A' }}

@empty
No properties found.
@endforelse
@if($service->faqs->count() > 0)

Frequently Asked Questions

@foreach($service->faqs as $index => $faq)

{!! $faq->answer !!}
@endforeach
@endif

Ready to Invest in {{ $service->title }}?

Contact our expert team today to get started.

@endsection @push('styles') @endpush