@if (!empty($page_init['setting']['logo']['footer'])) Logo @endif @if (!empty($page_init['contact']['desc']))
{!! $page_init['contact']['desc'] !!}
@endif @if (!empty($page_init['contact']['office']))
{{ __('frontend::lang.footer.address') }} : {{ $page_init['contact']['office'] }}
@endif @if (!empty($page_init['contact']['tel']) || !empty($page_init['contact']['tel']) || !empty($page_init['contact']['email']))
    @php $contacts = [ 'tel' => 'tel', 'tel' => 'tel', 'email' => 'mailto', ]; @endphp @foreach ($contacts as $key => $data) @if (!empty($page_init['contact'][$key]))
  • {{ __('frontend::lang.footer.' . $key) }} : {{ $page_init['contact'][$key] }}
  • @endif @endforeach
@endif @php $chk_social = false; foreach ($page_init['contact']['social'] as $key => $value) { if (!empty($value['url'])) { $chk_social = true; break; } } @endphp @if (!empty($chk_social))

{{ __('frontend::lang.footer.follow_us') }}

    @php $socialLinks = [ 'facebook' => ['icon' => 'fab fa-facebook-f'], 'line' => ['icon' => 'fab fa-line'], 'youtube' => ['icon' => 'fab fa-youtube'], 'instagram' => ['icon' => 'fab fa-instagram'], 'twitter' => ['icon' => 'fab fa-x-twitter'], 'tiktok' => ['icon' => 'fab fa-tiktok'], ]; @endphp @foreach ($page_init['contact']['social'] as $network => $item) @if (!empty($item['url']))
  • @endif @endforeach
@endif
    @foreach ($page_init['menu_header'] as $item) @if (!empty($item['sub'])) @foreach ($item['sub'] as $sub)
  • {{ $sub['name'] ?? '' }}
  • @endforeach @else
  • {{ $item['name'] ?? '' }}
  • @endif @endforeach
  • {{ $page_init['setting']['copyright'] ?? '' }}
    @foreach ($page_init['menu_footer'] as $item)
  • {{ $item['name'] ?? '' }}
  • @endforeach