Initial commit
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
ssww23
2026-03-10 00:55:37 +03:00
parent fc0f28d830
commit 93a655235a
155 changed files with 24768 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
@extends('layouts.shop')
@section('content')
@include('partials.breadcrumbs', [
'items' => [
['label' => 'Главная', 'url' => route('home')],
['label' => 'Заказ оформлен', 'url' => null],
],
])
<section class="pc-section">
<div class="pc-card">
<h2>Заказ {{ $order->id }} успешно оформлен</h2>
<p>Мы приняли заказ в обработку. Статус заказа: <strong>{{ $order->status }}</strong>.</p>
<p>Способ оплаты: <strong>{{ $order->payment_method_label }}</strong>.</p>
<p>Сумма заказа: <strong>{{ number_format($order->total, 0, '.', ' ') }} {{ config('shop.currency_symbol', '₽') }}</strong>.</p>
@include('partials.payment-requisites', [
'amount' => $order->total,
'purpose' => 'Заказ #' . $order->id,
'showHelp' => true,
])
<div class="pc-product-actions">
<a class="pc-btn primary" href="{{ route('catalog.index') }}">Продолжить покупки</a>
@auth
<a class="pc-btn ghost" href="{{ route('account.orders.show', $order) }}">Открыть заказ</a>
@endauth
</div>
</div>
</section>
@endsection