@props(['name' => 'User', 'image' => null]) @php $initials = collect(explode(' ', $name)) ->map(function ($segment) { return strtoupper(substr($segment, 0, 1)); }) ->take(2) ->join(''); @endphp