Initial Commit
The initial public commit of MVGL website code.
This commit is contained in:
commit
b39ecf1638
2043 changed files with 215154 additions and 0 deletions
16
resources/views/partials/theme-mode/_main.blade.php
Normal file
16
resources/views/partials/theme-mode/_main.blade.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
$iconClass = isset($params['toggle-btn-icon-class']) ? $params['toggle-btn-icon-class'] : 'fs-2';
|
||||
?>
|
||||
|
||||
<!--begin::Menu toggle-->
|
||||
<a href="#" class="{{ $btnClass }}"
|
||||
data-kt-menu-trigger="click" data-kt-menu-attach="parent" data-kt-menu-placement="bottom-end" data-kt-menu-flip="bottom">
|
||||
@if (theme()->getCurrentMode() === 'dark')
|
||||
<i class="fas fa-moon {{ $iconClass }}"></i>
|
||||
@else
|
||||
<i class="fas fa-brightness-low {{ $iconClass }}"></i>
|
||||
@endif
|
||||
</a>
|
||||
<!--begin::Menu toggle-->
|
||||
|
||||
{{ theme()->getView('partials/theme-mode/__menu') }}
|
Loading…
Add table
Add a link
Reference in a new issue