diff --git a/themes/default/checkout/success.blade.php b/themes/default/checkout/success.blade.php new file mode 100644 index 00000000..44ff45d2 --- /dev/null +++ b/themes/default/checkout/success.blade.php @@ -0,0 +1,61 @@ +@extends('layout.master') +@section('body-class', 'page-checkout-success') +@section('title', __('shop/checkout.checkout_success_title')) + +@section('content') + +
+
+
+
+
+ +
+
+

{{ __('shop/checkout.checkout_success_title') }}

+
+
+
+
+
+
+
{{ __('shop/account.order.order_info.order_details') }}
+
+
+
+ + + + + + + + + + + + + + + + + +
{{ __('shop/account.order.order_info.order_number') }}{{ __('shop/account.order.order_info.order_date') }}{{ __('shop/account.order.order_info.state') }}{{ __('shop/account.order.order_info.order_amount') }}
{{ $order->number }}{{ $order->created_at }} + {{ __("common.order.{$order->status}") }} + {{ currency_format($order->total, $order->currency_code, $order->currency_value) }}
+
+
+
+
+
+
+
+
+ + + +@endsection \ No newline at end of file