New customers save 10% with the code GET10
@php if(Session::has('locale')){ $locale = Session::get('locale', Config::get('app.locale')); } else{ $locale = env('DEFAULT_LANGUAGE'); } @endphp
@php $currentCountry = session('country'); $countryCode = is_object($currentCountry) ? strtolower($currentCountry->iso2 ?? '') : (is_array($currentCountry) ? strtolower($currentCountry['iso2'] ?? '') : ''); $flagPath = !empty($countryCode) ? "assets/img/flags/{$countryCode}.png" : ""; $currentFlag = (!empty($flagPath) && file_exists(public_path($flagPath))) ? static_asset($flagPath) : static_asset("landing/Flag_of_Turkey.svg.png"); @endphp

Flag {{ $currentCountry->iso2??'' }}

{{ \App\Models\Language::where('code', $locale)->value('name') ?? 'English' }}

@php $currencies = \App\Models\Currency::where('status', 1)->get(); $currentCurrency = getCurrency(session('currency_id')); @endphp

{{ $currentCurrency?->code }}