first change

This commit is contained in:
2025-07-27 17:40:56 +05:45
commit f8b9a6725b
3152 changed files with 229528 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<div class="ms-1 header-item d-none d-sm-flex dashboard-switch">
<label class="switch">
<input type="checkbox" id="dashboard-toggle-btn" aria-label="Toggle Dashboard"
@checked(auth()->user()->active_sidebar !== config('app.sidebar.default')) wire:change="toggle($event.target.checked)">
<div class="slider round">
<span class="on">{{ config('app.sidebar.other') == 'sidebar' ? 'CMS' : 'CPM' }}</span>
<span class="off">{{ config('app.sidebar.default') == 'sidebar' ? 'CMS' : 'CPM' }}</span>
</div>
</label>
</div>