@include('partials.sidebar')
@php $shop = Auth::guard('admin')->user()->shop ?? null; $shopLogo = $shop?->logo ? asset('storage/' . $shop->logo) : null; @endphp @if($shopLogo) {{ $shop->name }} @else eTailorz @endif

@yield('heading', 'Dashboard')

@yield('subheading', '')

@hasSection('actions') @yield('actions') @endif
{{-- flash messages stay unchanged below --}} @yield('content')
@stack('scripts')