dbfdg @php use App\Models\Utility; $setting = \App\Models\Utility::settings(); $logo = \App\Models\Utility::get_file('uploads/logo'); $company_favicon = $setting['company_favicon'] ?? ''; $color = !empty($setting['color']) ? $setting['color'] : 'theme-3'; if(isset($setting['color_flag']) && $setting['color_flag'] == 'true') { $themeColor = 'custom-color'; } else { $themeColor = $color; } $SITE_RTL = $setting['SITE_RTL'] ?? ''; $lang = \App::getLocale('lang'); if ($lang == 'ar' || $lang == 'he') { $SITE_RTL = 'on'; } $metatitle = isset($setting['meta_title']) ? $setting['meta_title'] : ''; $metsdesc = isset($setting['meta_desc']) ? $setting['meta_desc'] : ''; $meta_image = \App\Models\Utility::get_file('uploads/meta/'); $meta_logo = isset($setting['meta_image']) ? $setting['meta_image'] : ''; @endphp {{ $setting['title_text'] ? $setting['title_text'] : config('app.name', 'ERPGO') }} - @yield('page-title') {{-- --}} {{-- --}} @if ($SITE_RTL == 'on') @endif @if ($setting['cust_darklayout'] == 'on') @endif @if ($SITE_RTL != 'on' && $setting['cust_darklayout'] != 'on') @endif @if ($setting['cust_darklayout'] == 'on') @endif @stack('css-page')
@include('partials.admin.menu') @include('partials.admin.header')
@yield('content')
@include('partials.admin.footer') @include('Chatify::layouts.footerLinks')