Hi, all just sharing simple code if u want to relocate master on/off button to be easy access rather can original which was place inside setting>advance settings >foodomaa utilities
Put this code at resources>views>admin>includes>header.blade.php after
@can('settings_manage')
.....
@endcan
[paste below code]
@can('settings_manage')
<ul class="navbar-nav ml-md-auto">
<li class="nav-item">
<a href="{{ route('admin.utility.index') }}" class="navbar-nav-link {{ Request::is('admin/utility/index') ? 'active' : '' }}" data-popup="tooltip" title="Master On/Off Click" data-placement="bottom">
<i class="icon-hammer-wrench mr-2"></i>
Master On/Off
</a>
</li>
</ul>
@endcan
hope can help and maybe others can improve on this initial sharing
Thanks