@props([ 'title' => '', 'crumbs' => [], // array of [label, href?] — last item is treated as active 'action' => null, // raw HTML string for the right-side action (e.g. button) ])
class(['ds-pagetitle d-flex align-items-center justify-content-between flex-wrap gap-3']) }}>

{{ $title }}

@if (!empty($crumbs)) @endif
@if ($action !== null || isset($slot) && !$slot->isEmpty())
@if ($action !== null) {!! $action !!} @else {{ $slot }} @endif
@endif