@php $companyName = config('shop.company_name', config('app.name')); $companyDescription = config('shop.company_description'); $contactPhone = trim((string) config('shop.contact_phone')); $contactEmail = trim((string) config('shop.contact_email')); $contactTelegram = trim((string) config('shop.contact_telegram')); $contactHours = trim((string) config('shop.contact_hours')); $telegramUrl = ''; $phoneUrl = ''; $emailUrl = ''; if ($contactPhone !== '') { $phoneUrl = 'tel:' . preg_replace('/[^\d+]/', '', $contactPhone); } if ($contactEmail !== '') { $emailUrl = 'mailto:' . $contactEmail; } if ($contactTelegram !== '') { $telegramUrl = str_starts_with($contactTelegram, 'http://') || str_starts_with($contactTelegram, 'https://') ? $contactTelegram : 'https://t.me/' . ltrim($contactTelegram, '@/'); } @endphp