@php use App\Models\Utility; $logo = asset(Storage::url('uploads/logo/')); $company_favicon = Utility::getValByName('company_favicon'); $SITE_RTL = env('SITE_RTL'); $setting = \App\Models\Utility::colorset(); // $color = 'theme-3'; // if (!empty($setting['color'])) { // $color = $setting['color']; // } $settings = \App\Models\Utility::settings(); $color = !empty($settings['color']) ? $settings['color'] : 'theme-3'; if(isset($settings['color_flag']) && $settings['color_flag'] == 'true') { $themeColor = 'custom-color'; } else { $themeColor = $color; } $SITE_RTL = 'theme-3'; if (!empty($setting['SITE_RTL'])) { $SITE_RTL = $setting['SITE_RTL']; } $mode_setting = \App\Models\Utility::mode_layout(); $seo_setting = App\Models\Utility::getSeoSetting(); $set_cookie = Utility::cookies(); @endphp {{ Utility::getValByName('title_text') ? Utility::getValByName('title_text') : config('app.name', 'AccountGo') }} - @yield('page-title') {{-- --}} {{-- --}} @if ($SITE_RTL == 'on') @endif @if ($setting['cust_darklayout'] == 'on') @else @endif @if ($setting['cust_darklayout'] == 'on') @endif @if ($SITE_RTL == 'on') @endif @stack('css-page')
@include('partials.admin.menu') @include('partials.admin.header')
@yield('content')
@include('partials.admin.footer') @if ($set_cookie['enable_cookie'] == 'on') @include('layouts.cookie_consent') @endif