@php $siteName = App\Models\Setting::get('site_name', '深圳市云创芯电子有限公司'); $seoTitleDefault = App\Models\Setting::get('seo_title_default', $siteName . ' - 多口 TypeC 接口IC'); $seoDescDefault = App\Models\Setting::get('seo_description_default', '深圳市云创芯电子有限公司提供多口 TypeC 接口IC。'); $logoUrl = '/images/logo-dark.png'; // 固定品牌 logo,直接指向深色版,不依赖数据库设置(避免服务器库未同步导致回退旧 logo) $faviconUrl = App\Models\Setting::get('favicon_url', '/images/ccc-icon.ico'); $icpNo = App\Models\Setting::get('icp_no', ''); $securityFilingNo = App\Models\Setting::get('security_filing_no', '粤公网安备44030002015390号'); // 主题配色:后台「站点设置」可切换;默认 azure(沉稳蓝) $themes = [ 'azure' => ['primary' => '#4a8af4', 'hover' => '#76a9f7', 'accent' => '#6fa8f7', 'info' => '#4a8af4', 'rgb' => '74,138,244'], 'slate' => ['primary' => '#6e8cb0', 'hover' => '#8aa6c6', 'accent' => '#7d98ba', 'info' => '#6e8cb0', 'rgb' => '110,140,176'], 'indigo' => ['primary' => '#7b7ef0', 'hover' => '#9b9df6', 'accent' => '#8f86f2', 'info' => '#7b7ef0', 'rgb' => '123,126,240'], 'teal' => ['primary' => '#2bb6a4', 'hover' => '#4fd0bd', 'accent' => '#34c0ad', 'info' => '#2bb6a4', 'rgb' => '43,182,164'], 'amber' => ['primary' => '#e8a13c', 'hover' => '#f2b765', 'accent' => '#ecae52', 'info' => '#e8a13c', 'rgb' => '232,161,60'], ]; $themeKey = App\Models\Setting::get('theme', 'azure'); $theme = $themes[$themeKey] ?? $themes['azure']; @endphp @yield('title', $seoTitleDefault) @php // 前台顶部导航菜单(后台「导航菜单」可全权管理:显示/隐藏 + 排序) $navMenus = \App\Models\NavigationMenu::visible()->ordered()->get(); @endphp
{{ $siteName }}
@if (session('success'))
{{ session('success') }}
@endif @if ($errors?->any())
{{ $errors->first() ?: '表单填写有误,请检查后重试。' }}
@endif
@yield('content')