@yield('content')
@php // Public layout - no authentication required // Ensure sidebars are hidden by default for public pages $showLeftSidebar = $showLeftSidebar ?? false; $showRightSidebar = $showRightSidebar ?? false; $mainContentClass = match (true) { $showLeftSidebar && $showRightSidebar => 'col-md-8 col-lg-6', $showLeftSidebar || $showRightSidebar => 'col-md-9 col-lg-9', default => 'col-md-12', }; @endphp