@php
$socials = App\Models\Social::first();
$sessionId = session()->getId();
$userId = auth()->check() ? auth()->id() : null;
$wishlistCount = $userId
? \App\Models\Wishlist::where('user_id', $userId)->count()
: \App\Models\Wishlist::where('session_id', $sessionId)->count();
$cartCount = $userId
? \App\Models\Cart::where('user_id', $userId)->sum('quantity')
: \App\Models\Cart::where('session_id', $sessionId)->sum('quantity');
@endphp