Hi @sroutier and everyone, is it possible to do the following
configure the skins and layouts of the app so that it is changeable on the fly
such that when the admin/root user changes the skin or layout, it is reflected system wide, and seen by all the other users as their current skin and layout.
I seem to have achieved 1 by including
@if(Auth::check()) @if(Auth::user()->isRoot()) <script src="{{ asset("/bower_components/admin-lte/dist/js/demo.js") }}" type="text/javascript"></script> @endif @endif
to partials._body.blade.php file. But whenever I set a the skin or layout, it doesn't reflect system wide. Please how do I achieve this?
Hi @sroutier and everyone, is it possible to do the following
I seem to have achieved 1 by including
@if(Auth::check()) @if(Auth::user()->isRoot()) <script src="{{ asset("/bower_components/admin-lte/dist/js/demo.js") }}" type="text/javascript"></script> @endif @endif
to partials._body.blade.php file. But whenever I set a the skin or layout, it doesn't reflect system wide. Please how do I achieve this?