{{-- Extends layout --}} @extends(getThemeBasePath()) @section('page_title') {{$page_title}} @endsection {{-- Content --}} @section('content') @php // Menu metadata can provide help-text on any menu depth. The icon markup // comes from the trusted menu configuration; the tooltip text is escaped. $renderMenuHelpText = function ($menuItem) { $helpText = $menuItem['help-text'] ?? null; if (empty($helpText)) { return ''; } $title = is_array($helpText) ? ($helpText['title'] ?? '') : ''; $icon = is_array($helpText) ? ($helpText['icon'] ?? '') : ''; return '' . $icon . ''; }; @endphp
@endsection {{-- Scripts Section --}} @section('scripts') @endsection