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,60 @@
@extends('layouts.shop')
@section('content')
@include('partials.breadcrumbs', [
'items' => [
['label' => 'Главная', 'url' => route('home')],
['label' => 'Личный кабинет', 'url' => route('account')],
['label' => 'Заказ #' . $order->id, 'url' => null],
],
])
<section class="pc-section">
<div class="pc-section-title">
<h2>Заказ #{{ $order->id }}</h2>
<p>Статус: <strong>{{ $order->status }}</strong></p>
<p>Способ оплаты: <strong>{{ $order->payment_method_label }}</strong></p>
</div>
<div class="pc-grid pc-grid-2">
<div class="pc-card">
<h3>Состав заказа</h3>
<div class="pc-account-orders">
@foreach ($order->items as $item)
<div class="pc-account-order">
<span>{{ $item->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>{{ number_format($order->total, 0, '.', ' ') }} {{ config('shop.currency_symbol', '₽') }}</strong>
</div>
</div>
<div class="pc-card">
<h3>Данные получателя</h3>
<p><strong>{{ $order->customer_name }}</strong></p>
<p>{{ $order->email }}</p>
@if ($order->phone)
<p>{{ $order->phone }}</p>
@endif
@if ($order->address)
<p>{{ $order->address }}</p>
@endif
@if ($order->comment)
<p>Комментарий: {{ $order->comment }}</p>
@endif
</div>
</div>
@if (!in_array($order->status, ['paid', 'shipped', 'completed'], true))
@include('partials.payment-requisites', [
'amount' => $order->total,
'purpose' => 'Заказ #' . $order->id,
'showHelp' => true,
])
@endif
</section>
@endsection