@php $path = trim(request()->path(), '/'); $isHome = $path === '' || in_array($path, config('app.locales', []), true); $isBlog = request()->is('blog', 'blog/*', '*/blog', '*/blog/*'); $isContact = request()->is('contact', '*/contact'); $isShop = request()->is('shop', '*/shop', 'shop/*', '*/shop/*'); $isHowItWorks = request()->is('how-it-works', '*/how-it-works'); $isPastEvents = request()->is('past-events', 'past-events/*', '*/past-events', '*/past-events/*'); $isPricing = request()->is('pricing', '*/pricing'); $isWorkshop = $isHowItWorks || $isPastEvents || $isPricing; $headerLocale = app()->getLocale(); $headerLocaleName = config('app.locale_names.' . $headerLocale, $headerLocale); $topEmail = __('public.contact.office_email'); $topPhone = __('public.contact.office_phone'); $topTelHref = $topPhone ? 'tel:' . preg_replace('/[^0-9+]/', '', $topPhone) : '#'; @endphp

{{ __('public.header.welcome') }}