@livewireStyles
@php // Get unread notification count $unreadCount = \App\Models\SupplierNotification::where('supplierId', auth()->guard('supplier')->id()) ->where('isRead', false) ->count(); @endphp

@yield('header-title', 'Dasbor Mitra')

@yield('header-subtitle', 'Ringkasan performa penjualan produk Anda')

@yield('content') {{ $slot ?? '' }}
@include('partials.supplier-mobile-nav') @livewireScripts @stack('scripts')