@php $providerName = $provider?->business_name ?: ($provider?->name ?: 'Provider'); $providerInitial = strtoupper(substr($providerName, 0, 1)); $kicker = $kicker ?? 'Provider dashboard'; $title = $title ?? $providerName; $description = $description ?? null; $actionUrl = $actionUrl ?? null; $actionIcon = $actionIcon ?? null; $actionLabel = $actionLabel ?? null; $icon = $icon ?? null; $status = $status ?? null; @endphp
{{ $providerInitial }}

{{ $kicker }}

{{ $title }}

@if ($description)

{{ $description }}

@endif
@if ($status || ($actionUrl && $actionLabel) || $icon)
@if ($status) {!! $status !!} @endif @if ($icon)
{{ $icon }}
@endif @if ($actionUrl && $actionLabel) @if ($actionIcon) {{ $actionIcon }} @endif {{ $actionLabel }} @endif
@endif