BitesMochis
Home
Products
Contact
About
@php $cart = session('cart', []); $totalItems = collect($cart)->sum('qty'); @endphp
@if ($totalItems > 0)
{{ $totalItems }}
@endif
@auth
{{ auth()->user()->name }}
Profile
Lihat Pesanan Saya
{{-- Menu Admin --}} @if (auth()->user()->role === 'admin')
Admin Panel
@endif
@csrf
Logout
@else
Masuk
Daftar
@endauth
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@yield('content')