@props([ 'club' => null, 'size' => 'md', ]) @php $sizes = [ 'sm' => 'h-10 w-10 text-[10px]', 'md' => 'h-12 w-12 text-xs', 'lg' => 'h-16 w-16 text-sm', ]; $sizeClass = $sizes[$size] ?? $sizes['md']; $shortName = $club?->short_name ?: 'CLB'; @endphp @if ($club?->logo_path) {{ $club->name }} @else
{{ $shortName }}
@endif