@php // get theme color $setting = App\Models\Utility::colorset(); $color = 'theme-3'; if (!empty($setting['color'])) { $color = $setting['color']; } $users = \Auth::user(); $currantLang = $users->currentLanguages(); $languages = \App\Models\Utility::languages(); $footer_text = isset(\App\Models\Utility::settings()['footer_text']) ? \App\Models\Utility::settings()['footer_text'] : ''; @endphp @include('partials.admin.head')
@include('partials.admin.menu') @include('partials.admin.header')
@yield('content')
@include('partials.admin.footer')