@php if (theme()->isDarkModeEnabled()) { if (theme()->getCurrentMode() === 'dark') { $logoPath = theme()->getOption('layout', 'docs/logo-path/dark'); } else { $logoPath = theme()->getOption('layout', 'docs/logo-path/default'); } } else { $logoPath = theme()->getOption('layout', 'docs/logo-path/default'); } @endphp
@include('layout/docs/_menu')