{{-- User Page Container Wraps a user page with optional breadcrumb and page header. Similar to admin page-container but uses user-specific routes and breadcrumbs. Props: $title – page heading $subtitle – optional subtitle $breadcrumbs – array for breadcrumb component $actions – named slot for header action buttons Usage: Action ... page content ... --}} @props([ 'title' => '', 'subtitle' => '', 'breadcrumbs' => [], ])
{{-- Breadcrumb --}} @if(count($breadcrumbs))
@endif {{-- Page Header --}} @if($title) @endif {{-- Content --}}
{{ $slot }}