@php $supportChannels = [ ['route' => @jannah_opt('support_phone'), 'icon' => 'phone', 'label' => 'Phone', 'color' => 'bg-yellow-500'], ['route' => @jannah_opt('support_facebook'), 'icon' => 'facebook', 'label' => 'Facebook', 'color' => 'bg-blue-600'], ['route' => @jannah_opt('support_whatsapp'), 'icon' => 'message-circle', 'label' => 'WhatsApp', 'color' => 'bg-green-500'], ['route' => @jannah_opt('support_telegram'), 'icon' => 'send', 'label' => 'Telegram', 'color' => 'bg-blue-400'], ['route' => @jannah_opt('support_gmail'), 'icon' => 'mail', 'label' => 'Email', 'color' => 'bg-red-500'], ['route' => @jannah_opt('support_group'), 'icon' => 'users', 'label' => 'Group', 'color' => 'bg-purple-600'], ['route' => @jannah_opt('support_youtube'), 'icon' => 'youtube', 'label' => 'YouTube', 'color' => 'bg-red-600'], ['route' => @jannah_opt('support_instagram'), 'icon' => 'instagram', 'label' => 'Instagram', 'color' => 'bg-pink-500'], ]; @endphp
Having an issue? Find quick solutions...
@foreach ($supportChannels as $channel) @if (!empty($channel['route']))
{{ $channel['label'] }}
@endif @endforeach