@vite(['resources/css/app.css', 'resources/js/app.js'])
{{ config('app.name', 'Laravel') }}
Dashboard
Products
Categories
Orders
Variations
Customers
Chat
@php $unreadCount = \App\Models\Message::where('receiver_id', auth()->id()) ->whereNull('seen_at') ->count(); @endphp @if($unreadCount > 0)
{{ $unreadCount }}
@endif
{{ Auth::user()->name }}
@csrf
{{ __('Log Out') }}
{{ __('Dashboard') }}
{{ __('Products') }}
{{ __('Categories') }}
{{ __('Orders') }}
{{ __('Variations') }}
{{ __('Customers') }}
{{ __('Chat') }}
{{ Auth::user()->name }}
{{ Auth::user()->email }}
@csrf
{{ __('Log Out') }}
@yield('content')
@stack('scripts')