@php $settings = \App\Models\SettingsModel::first(); // Retrieve the first settings row $faviconPath = $settings->favicon ? asset('storage/brands_logo/' . $settings->favicon) : asset('favicon.png'); // Fallback to default favicon if not set @endphp @include('frontend.layouts.customcss')
@include('frontend.layouts.header') @yield("content") @include('frontend.layouts.footer')