@extends('layouts.app') @section('title', __('messages.golden_circle')) @section('content')

{{ __('messages.golden_circle') }}

{{ __('messages.vip_profiles_desc') }}

{{-- New: Purpose Section --}}
{{ __('messages.elite_selection') }}

{{ __('messages.elite_selection_desc') }}

{{ __('messages.global_discovery') }}

{{ __('messages.global_discovery_desc') }}

{{ __('messages.island_to_world') }}

{{ __('messages.island_to_world_desc') }}

@forelse ($vipProfiles as $vip)
VIP
{{-- Left: Image --}}
{{ $vip->name }}
{{-- Right: Details --}}

{{ $vip->name }}

@php $details = $vip->parsed_details; @endphp @if(count($details) > 0)
@foreach($details as $label => $value)
{{ str_replace('_', ' ', $label) }} {{ $value }}
@endforeach
@if(count($details) > 6)
@endif @else

{{ $vip->details }}

@endif
Verified VIP Member
@php $number = $vip->whatsapp_number; // Remove any non-numeric characters just in case $number = preg_replace('/[^0-9]/', '', $number); // Prepend 94 if it doesn't start with 94 or 0 if (!str_starts_with($number, '94')) { if (str_starts_with($number, '0')) { $number = '94' . substr($number, 1); } else { $number = '94' . $number; } } $whatsapp_msg = "Hello, I am interested in the VIP profile: " . $vip->name . ". Please provide more details."; $whatsapp_url = "https://wa.me/" . $number . "?text=" . urlencode($whatsapp_msg); @endphp {{ __('messages.know_more') }}
@empty

Coming Soon

Our exclusive VIP circle is being curated. Stay tuned.

Back to Home
@endforelse
{{ $vipProfiles->links() }}
@push('scripts') @endpush @endsection