@extends('layouts.app')
@section('body-class', 'page-checkout-success')
@section('content')
{{ __('front/order.order_number') }} | {{ __('front/order.order_date') }} | {{ __('front/order.order_total') }} | {{ __('front/order.order_status') }} | {{ __('front/checkout.order_comment') }} |
---|---|---|---|---|
{{ $order->number }} | {{ $order->created_at->format('Y-m-d') }} | {{ $order->total_format }} | {{ $order->status_format }} | {{ sub_string($order->comment) }} |
{{ __('front/order.product') }} | {{ __('front/order.price') }} | {{ __('front/order.quantity') }} | {{ __('front/order.subtotal') }} |
---|---|---|---|
{{ $product['name'] }}
{{ $product['product_sku'] }}
@if ($product['variant_label'])
- {{ $product['variant_label'] }}
@endif
|
{{ $product['price_format'] }} | {{ $product['quantity'] }} | {{ $product['price_format'] }} |
{{ $total['title'] }} | {{ $total->value_format }} | ||
{{ __('front/order.order_total') }} | {{ $order->total_format }} |