@php use App\Services\CartService; $user_id = auth()->id() ?? 0; $store_id = session('store_id') ?? ''; $favorites = getFavorites(user_id: $user_id, store_id: $store_id); $cart_count = app(CartService::class)->getCartCount($user_id, $store_id); @endphp