@extends('layouts.shop') @section('content') @include('partials.breadcrumbs', [ 'items' => [ ['label' => 'Главная', 'url' => route('home')], ['label' => 'Личный кабинет', 'url' => route('account')], ['label' => 'Заказ #' . $order->id, 'url' => null], ], ])

Заказ #{{ $order->id }}

Статус: {{ $order->status }}

Способ оплаты: {{ $order->payment_method_label }}

Состав заказа

Итого {{ number_format($order->total, 0, '.', ' ') }} {{ config('shop.currency_symbol', '₽') }}

Данные получателя

{{ $order->customer_name }}

{{ $order->email }}

@if ($order->phone)

{{ $order->phone }}

@endif @if ($order->address)

{{ $order->address }}

@endif @if ($order->comment)

Комментарий: {{ $order->comment }}

@endif
@if (!in_array($order->status, ['paid', 'shipped', 'completed'], true)) @include('partials.payment-requisites', [ 'amount' => $order->total, 'purpose' => 'Заказ #' . $order->id, 'showHelp' => true, ]) @endif
@endsection