@php use App\Services\TranslationService; use App\Services\CartService; use App\Services\StoreService; use App\Services\MediaService; use App\Models\Store; $store_id = session('store_id'); $store_details = app(StoreService::class)->getCurrentStoreData($store_id); $store_details = json_decode($store_details) ?? ''; $language_code = app(TranslationService::class)->getLanguageCode(); @endphp