@if(\App\Models\Setting::get('site_logo'))
) }})
@else
@endif
{{ app()->getLocale() === 'ar' ? \App\Models\Setting::get('site_name_ar', 'ليالي جدة') : \App\Models\Setting::get('site_name_en', 'Jeddah Night') }}
{{ app()->getLocale() === 'ar'
? 'دليلك الشامل لاكتشاف أفضل الأماكن والفعاليات والتجارب في مدينة جدة. استكشف المطاعم والمقاهي والمعالم السياحية والمزيد.'
: 'Your complete guide to discovering the best places, events, and experiences in Jeddah city. Explore restaurants, cafes, landmarks, and more.' }}
{{-- Social Icons --}}
@php
$socialLinks = [
['key' => 'social_instagram', 'icon' => 'fab fa-instagram'],
['key' => 'social_twitter', 'icon' => 'fab fa-x-twitter'],
['key' => 'social_snapchat', 'icon' => 'fab fa-snapchat-ghost'],
['key' => 'social_tiktok', 'icon' => 'fab fa-tiktok'],
['key' => 'social_facebook', 'icon' => 'fab fa-facebook-f'],
['key' => 'social_youtube', 'icon' => 'fab fa-youtube'],
];
@endphp
@foreach($socialLinks as $social)
@if(\App\Models\Setting::get($social['key']))
@endif
@endforeach
{{-- Show defaults if no social links are set --}}
@if(!collect($socialLinks)->contains(fn($s) => \App\Models\Setting::get($s['key'])))
@endif