70 lines
3.0 KiB
PHP
70 lines
3.0 KiB
PHP
@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
|