@php
$siteLogoPath = setting('site_logo'); // Fetches 'site_logo' from your settings
$siteName = setting('site_name', config('app.name', 'Laravel')); // Fetches 'site_name' or defaults
@endphp
@if ($siteLogoPath && Storage::disk('public')->exists($siteLogoPath))
merge(['class' => 'block h-9 w-auto']) }}>
@else
{{-- Fallback to default SVG if no site_logo is set or found --}}
@endif