@php $customerName = $customer?->name ?: 'Customer'; $customerInitial = strtoupper(substr($customerName, 0, 1)); $kicker = $kicker ?? 'Customer dashboard'; $title = $title ?? $customerName; $description = $description ?? null; $actionUrl = $actionUrl ?? null; $actionIcon = $actionIcon ?? null; $actionLabel = $actionLabel ?? null; @endphp
{{ $customerInitial }}

{{ $kicker }}

{{ $title }}

@if ($description)

{{ $description }}

@endif
@if ($actionUrl && $actionLabel) @endif