@php $company = auth()->user()->company ?? null; $primaryColor = $company->primary_color ?? '#0066b2'; $secondaryColor = $company->secondary_color ?? '#2c3e50'; @endphp @if($company && $company->favicon) @endif @stack('styles')

@yield('header', 'Dashboard')

@hasSection('subheader')

@yield('subheader')

@endif
@yield('header-actions')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if(session('warning'))
{{ session('warning') }}
@endif @yield('content')
@stack('scripts')