@php $adminFaviconRaw = get_config('admin_favicon'); $icon = $adminFaviconRaw ? json_decode($adminFaviconRaw) : null; if (! $icon || empty($icon->image_96x96_url ?? null)) { $icon = json_decode(get_config('favicon')); } @endphp @if ($icon) @php // Helper to check file existence function favicon_exists($path) { return $path && file_exists(public_path($path)); } @endphp @else @endif @stack('css_asset') @stack('css') @if (Auth::check() && auth()->user()->role_id == 3) @if (setting('is_google_analytics_activated') && setting('tracking_code')) {!! base64_decode(setting('tracking_code')) !!} @endif @endif
@yield('base.content') @if (session('toastr_success')) @endif @if (session('toastr_error')) @endif @include('layouts.delete') @include('layouts.modal') @include('layouts.script') @stack('js')