@if($user->profile_picture) {{ $user->name }} @else {{ substr($user->name, 0, 1) }} @endif
@csrf

{{ $user->name }}

@ {{ $user->username ?? 'User' }}

Email Address {{ $user->email }}
Joined Date {{ $user->created_at->format('M Y') }}
Edit Profile
@csrf
@if($user->is_admin)

My Cart

{{ $cartNotes->count() }} Items
@if($cartNotes->isEmpty())

Your cart is empty

Add notes you want to read later!

Browse Collection
@else
@foreach($cartNotes as $note)
@csrf @method('DELETE')
@endforeach
@endif
@else

Support

if need any help, Contact the admin

Chat on WhatsApp
@endif

History

Recently Viewed
@if($recentlyViewed->isEmpty())

Nothing here yet

Start exploring our study notes!

Explore Notes
@else
@foreach($recentlyViewed as $note)
@csrf @method('DELETE')
@endforeach
@endif