@php $network = $link['network'] ?? 'other'; $label = $link['label'] ?? 'Social'; $class = match ($network) { 'facebook' => 'fb', 'x' => 'x', 'linkedin' => 'li', 'youtube' => 'yt', default => 'other', }; @endphp @switch($network) @case('facebook') @break @case('x') @break @case('linkedin') @break @case('youtube') @break @default {{ mb_strtoupper(mb_substr($label, 0, 1)) }} @endswitch