@php use App\Models\Utility; $logo = asset(Storage::url('uploads/logo/')); $company_favicon = Utility::getValByName('company_favicon'); $SITE_RTL = env('SITE_RTL'); $seo_setting = App\Models\Utility::getSeoSetting(); $setting = \App\Models\Utility::mode_layout(); $color = 'theme-3'; if (!empty($setting['color'])) { $color = $setting['color']; } $SITE_RTL = 'theme-3'; if (!empty($setting['SITE_RTL'])) { $SITE_RTL = $setting['SITE_RTL']; } $mode_setting = \App\Models\Utility::mode_layout(); @endphp {{ Utility::getValByName('header_text') ? Utility::getValByName('header_text') : config('app.name', 'LeadGo') }} @yield('title') @stack('head') @if ($SITE_RTL == 'on') {{-- --}} @endif @if ($setting['cust_darklayout'] == 'on') @else @endif @stack('style-page')
@yield('content')
@stack('script-page')