@vite(['resources/css/app.css', 'resources/js/app.js']) @php $brandPrimary = \App\Models\Setting::get('brand_primary_color', '#405189'); $brandDark = \App\Models\Setting::darken($brandPrimary, 15); $brandDeep = \App\Models\Setting::darken($brandPrimary, 40); $brandOrgName = \App\Models\Setting::get('brand_org_name', config('app.name')); $brandLogo = \App\Models\Setting::get('brand_logo'); @endphp
Admin @hasSection('breadcrumb') / @yield('breadcrumb') @endif
@yield('header', 'Dashboard')
@yield('header-actions')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @yield('content')
{{-- ── /LAYOUT WRAPPER ── --}} @stack('scripts')