@extends('layouts.shop') @section('meta_title', 'Контакты') @section('meta_description', 'Контакты магазина: телефон, email, адрес и часы работы поддержки.') @section('meta_keywords', 'контакты магазина, телефон, email, адрес') @section('meta_canonical', route('pages.contacts')) @section('content') @php $companyName = config('shop.company_name', config('app.name')); $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 @include('partials.breadcrumbs', [ 'items' => [ ['label' => 'Главная', 'url' => route('home')], ['label' => 'Контакты', 'url' => null], ], ])

Поможем с вашей сборкой.

Оставьте заявку — поможем подобрать комплектующие и ответим по доставке.

Поддержка

{{ $companyName }} — поддержка клиентов

@if ($phoneUrl !== '')

Телефон: {{ $contactPhone }}

@endif @if ($emailUrl !== '')

Почта: {{ $contactEmail }}

@endif @if ($telegramUrl !== '')

Telegram: {{ $contactTelegram }}

@endif @if ($contactHours !== '')

Часы: {{ $contactHours }}

@endif
@csrf
@endsection