@vite(['resources/css/app.css', 'resources/js/app.js']) @php $globalSettings = \App\Models\Setting::whereIn('key', ['font_size', 'font_family', 'font_weight'])->pluck('value', 'key'); $fontFamily = $globalSettings['font_family'] ?? 'Inter'; $fontSize = $globalSettings['font_size'] ?? '32px'; $fontWeight = $globalSettings['font_weight'] ?? '700'; @endphp
Admin / @yield('page_title', 'Home')
{{ strtoupper(substr(Auth::user()->name ?? 'A', 0, 1)) }}
@yield('content')
@stack('scripts')