@extends('layouts.shop') @section('content') @include('partials.breadcrumbs', [ 'items' => [ ['label' => 'Главная', 'url' => route('home')], ['label' => 'Заказ оформлен', 'url' => null], ], ])

Заказ №{{ $order->id }} успешно оформлен

Мы приняли заказ в обработку. Статус заказа: {{ $order->status }}.

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

Сумма заказа: {{ number_format($order->total, 0, '.', ' ') }} {{ config('shop.currency_symbol', '₽') }}.

@include('partials.payment-requisites', [ 'amount' => $order->total, 'purpose' => 'Заказ #' . $order->id, 'showHelp' => true, ])
@endsection