{{-- ChannelTalk Plugin Key --}} @if(env('CHANNELTALK_PLUGIN_KEY')) @endif {{-- SEO Meta Tags - @yield has priority over auto-generated seoData --}} @yield('title', $seoData['title'] ?? config_get('SITE_NAME')) {{-- Canonical URL --}} @if(isset($seoData['canonical_url'])) @endif {{-- Open Graph Meta Tags - @yield has priority --}} {{-- Twitter Card Meta Tags - @yield has priority --}} {{-- 공통 SEO 컴포넌트 (컨트롤러에서 생성된 seoData 사용) --}} @include('sitemanager::components.seo') {!! setResources(['jquery', 'bootstrap', 'sweetalert']) !!} {!! resource('sitemanager::js/notifications.js') !!} {!! resource('css/app.css') !!} {!! resource('css/google-translate-spacing.css') !!} {!! resource('css/search.css') !!} {!! resource('js/app.js') !!} {!! resource('js/mobile-menu.js') !!} {!! resource('js/translate.js') !!} {!! resource('js/search.js') !!} @if(app()->environment('production')) @endif @stack('head') @if(app()->environment('production')) @endif @include('partials.header') @yield('content') @include('partials.footer') {{-- SweetAlert 세션 메시지 처리 --}} @if(session('success') || session('error') || session('errors') || session('warning') || session('info')) @endif @stack('scripts')