{{-- Column 1: About Company --}}
@if(setting('site_logo') && \Illuminate\Support\Facades\Storage::disk('public')->exists(str_replace(\Illuminate\Support\Facades\Storage::url(''), '', setting('site_logo')))) {{ setting('site_name', 'Digital Vocano') }} @else {{ setting('site_name', 'Digital Vocano') }} @endif

{{ setting('site_description', 'Crafting innovative digital solutions that drive success.') }}

{{-- Social Icons in Footer --}}
@php $socialLinks = [ 'social_facebook_url' => ['icon' => 'fab fa-facebook-f', 'label' => 'Facebook', 'color' => 'hover:text-blue-600 dark:hover:text-blue-500'], 'social_twitter_url' => ['icon' => 'fab fa-twitter', 'label' => 'Twitter / X', 'color' => 'hover:text-sky-500 dark:hover:text-sky-400'], // or fa-brands fa-x-twitter 'social_linkedin_url' => ['icon' => 'fab fa-linkedin-in', 'label' => 'LinkedIn', 'color' => 'hover:text-blue-700 dark:hover:text-blue-600'], 'social_instagram_url' => ['icon' => 'fab fa-instagram', 'label' => 'Instagram', 'color' => 'hover:text-pink-500 dark:hover:text-pink-400'], 'social_youtube_url' => ['icon' => 'fab fa-youtube', 'label' => 'YouTube', 'color' => 'hover:text-red-600 dark:hover:text-red-500'], 'social_tiktok_url' => ['icon' => 'fab fa-tiktok', 'label' => 'TikTok', 'color' => 'hover:text-black dark:hover:text-white'], ]; @endphp @foreach($socialLinks as $key => $details) @if(setting($key)) @endif @endforeach {{-- Corrected: This should be @endforeach to close the loop started on line 22 --}}
{{-- Column 2: Quick Links --}}

Quick Links

  • Home
  • @foreach(\Modules\LandingPage\Entities\LpPage::whereIn('slug', ['about-us', 'services', 'projects'])->where('is_published', true)->get() as $page)
  • {{ $page->title }}
  • @endforeach
{{-- Column 3: Contact & Legal --}}

Contact & Legal

    @foreach(\Modules\LandingPage\Entities\LpPage::whereIn('slug', ['contact', 'privacy-policy', 'terms-of-service'])->where('is_published', true)->get() as $page)
  • {{ $page->title }}
  • @endforeach

© {{ date('Y') }} {{ setting('site_name', 'Digital Vocano') }}. All rights reserved.