@if (!empty($page_init['contact']['name']))
@php
$chk = false;
foreach ($page_init['contact']['social'] ?? [] as $k_s => $s) {
if (!empty($s['url'])) {
$chk = true;
break;
}
}
@endphp
@if ($chk)
{{ __('frontend::lang.contact.follow_us') }}
@php
$social = [
'line' => 'fab fa-line',
'facebook' => 'fab fa-facebook-f',
'youtube' => 'fab fa-youtube',
'instagram' => 'fab fa-instagram',
'twitter' => 'fab fa-x-twitter',
'tiktok' => 'fab fa-tiktok',
];
@endphp
@foreach ($page_init['contact']['social'] as $k_s => $s)
@if (!empty($s['url']))
-
@endif
@endforeach