@extends('layouts.master') @section('content')

{{ $heroSection->title_first_line }} {{ $heroSection->title_second_line }}

{{ $heroSection->subtitle_1 }}, {{ $heroSection->subtitle_2 }}

@foreach ($heroSection->count_section as $c)

0

{{ $c['subtitle'] }}
@endforeach

{{ $section['title'] }}

{{ $section['subtitle'] }}

@foreach ($section['platforms'] as $index => $platform) @endforeach
@foreach ($section['platforms'] as $index => $platform)
@foreach ($platform['features'] as $feature)

{{ $feature['title'] }}

{{ $feature['description'] }}

@endforeach
@endforeach
{{-- Main Title --}}

{{ $hereWithYou->main_title ?? 'Every Steps of the Way #HereWithYou!' }}

{{-- Image Gallery --}}
@php $images = $hereWithImages->isNotEmpty() ? $hereWithImages : collect(\App\Models\HereWithImage::getDefaultImages()); @endphp @foreach ($images as $index => $image) @php // Column span: second image bigger $colSpan = $index === 1 ? 'md:col-span-6 col-span-6' : 'md:col-span-3 col-span-6'; // Determine image URL $imgUrl = is_object($image) ? asset($image->thumbnail ?? '') : asset($image); @endphp
@endforeach
{{-- Features Section --}}
@foreach ([1, 2] as $i)

{{ $hereWithYou['title_' . $i] ?? 'Feature Title' }}

{!! $hereWithYou['description_' . $i] ?? 'Feature description goes here.' !!}

@endforeach

{{ $earnRide->title ?? '' }}

{{ $earnRide->subtitle ?? '' }}

{{ $appSection->title ?? 'Download the app' }}

{{ $appSection->subtitle ?? 'Our reliable service and attractive offers are waiting just for you!' }}

{{ $customerReviewSection->title }}

{{ $customerReviewSection->subtitle }}

@foreach ($customer as $c)

{{ $c['comment'] }}

{{ $c['name'] }}

{{ $c['designation'] }}
@endforeach
@foreach ($customer as $c)

{{ $c['comment'] }}

{{ $c['name'] }}

{{ $c['designation'] }}
@endforeach
{{ $trustedDelivery->title }}

{{ $trustedDelivery->subtitle_1 }}
{{ $trustedDelivery->subtitle_2 }}

From the Blog

@endsection