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

{{ __('Заказ #:number', ['number' => $order->id]) }}

{{ __('Статус:') }} {{ $order->status_label }}

{{ __('Способ оплаты:') }} {{ $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' => __('Заказ #:number', ['number' => $order->id]), 'showHelp' => true, ]) @endif
@endsection