@php
// Reusable avatar/icon with graceful initials fallback.
// Props: $url (nullable), $name, $size (default h-9 w-9), $rounded (default rounded-full)
$size = $size ?? 'h-9 w-9';
$rounded = $rounded ?? 'rounded-full';
$initial = mb_strtoupper(mb_substr(trim((string) $name), 0, 1)) ?: '?';
@endphp
@if (!empty($url))
{{ $initial }}
@else
{{ $initial }}
@endif