Files
tehnobox/resources/views/pages/shipping-payment.blade.php
ssww23 0ee9f05416
Some checks failed
Deploy / deploy (push) Has been cancelled
1
2026-03-17 01:59:00 +03:00

43 lines
2.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@extends('layouts.shop')
@section('meta_title', __('Доставка и оплата'))
@section('meta_description', __('Условия доставки и способы оплаты заказов в интернет-магазине комплектующих.'))
@section('meta_keywords', __('доставка, оплата, условия заказа'))
@section('meta_canonical', route('pages.shipping-payment'))
@section('content')
@include('partials.breadcrumbs', [
'items' => [
['label' => __('Главная'), 'url' => route('home')],
['label' => __('Доставка и оплата'), 'url' => null],
],
])
<section class="pc-section">
<div class="pc-section-title">
<h2>{{ __('Быстрая доставка и удобная оплата.') }}</h2>
<p>{{ __('Выбирайте курьера или доставку по времени с безопасной оплатой.') }}</p>
</div>
<div class="pc-grid pc-grid-2">
<article class="pc-card">
<div class="pc-card-meta">{{ __('Доставка') }}</div>
<h3>{{ __('Варианты доставки') }}</h3>
<ul class="pc-list">
<li>{{ __('День в день в пределах города') }}</li>
<li>{{ __('1-3 дня по стране') }}</li>
<li>{{ __('Онлайн‑треккинг') }}</li>
</ul>
</article>
<article class="pc-card">
<div class="pc-card-meta">{{ __('Оплата') }}</div>
<h3>{{ __('Способы оплаты') }}</h3>
<ul class="pc-list">
<li>{{ __('Оплата банковской картой') }}</li>
<li>{{ __('Безналичный расчет для юрлиц') }}</li>
<li>{{ __('Подтверждение оплаты в личном кабинете') }}</li>
</ul>
</article>
</div>
</section>
@endsection