@props([ 'group' => null, // breadcrumb parent, e.g. "Customers" 'title' => '', // page name, e.g. "Subscribers" 'lead' => null, // one line of context under the title ]) {{-- Shared page header: breadcrumb, title and actions. Used across the admin so every screen opens the same way — where am I, what is this, what can I do here. --}}
@if ($group) {{ $group }} {{ $title }} @endif

{{ $title }}

@if ($lead)

{{ $lead }}

@endif
@isset($actions)
{{ $actions }}
@endisset