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

70 lines
3.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('content')
@include('partials.breadcrumbs', [
'items' => [
['label' => __('Главная'), 'url' => route('home')],
['label' => __('Корзина'), 'url' => route('cart.index')],
['label' => __('Данные получателя'), 'url' => route('checkout.show')],
['label' => __('Реквизиты для оплаты'), 'url' => null],
],
])
<section class="pc-section">
<div class="pc-section-title">
<h2>{{ __('Реквизиты для оплаты') }}</h2>
<p>{{ __('Переведите сумму заказа по реквизитам ниже и подтвердите оформление.') }}</p>
</div>
<div class="pc-cart-layout">
<div class="pc-card">
<h3>{{ __('Данные получателя') }}</h3>
<p><strong>{{ $customer['customer_name'] }}</strong></p>
<p>{{ $customer['email'] }}</p>
@if (!empty($customer['phone']))
<p>{{ $customer['phone'] }}</p>
@endif
<p>{{ $customer['address'] }}</p>
@if (!empty($customer['comment']))
<p>{{ __('Комментарий:') }} {{ $customer['comment'] }}</p>
@endif
<div class="pc-product-actions">
<a class="pc-btn ghost" href="{{ route('checkout.show') }}">{{ __('Изменить данные') }}</a>
</div>
</div>
<aside class="pc-card pc-cart-summary">
<h3>{{ __('Ваш заказ') }}</h3>
<div class="pc-account-orders">
@foreach ($items as $item)
<div class="pc-account-order">
<span>{{ $item['product']->name }} × {{ $item['quantity'] }}</span>
<strong>{{ number_format($item['subtotal'], 0, '.', ' ') }} {{ config('shop.currency_symbol', '₽') }}</strong>
</div>
@endforeach
</div>
<div class="pc-cart-summary-row">
<span>{{ __('Товаров') }}</span>
<strong>{{ $itemsCount }}</strong>
</div>
<div class="pc-cart-summary-row">
<span>{{ __('Итого') }}</span>
<strong>{{ number_format($total, 0, '.', ' ') }} {{ config('shop.currency_symbol', '₽') }}</strong>
</div>
</aside>
</div>
@include('partials.payment-requisites', [
'amount' => $total,
'purpose' => __('Номер заказа будет присвоен после подтверждения'),
'showHelp' => true,
])
<form method="post" action="{{ route('checkout.store') }}">
@csrf
<button class="pc-btn primary" type="submit">{{ __('Подтвердить оформление заказа') }}</button>
</form>
</section>
@endsection