From 6d85aac56150c5aa574ec6e6c1bf03d218c5eb21 Mon Sep 17 00:00:00 2001 From: tanxiaoyong Date: Mon, 5 Jun 2023 15:09:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=89=A9=E6=B5=81=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E5=B1=95=E7=A4=BA=E5=9D=97=E3=80=82=E5=BD=93=E6=B8=B8?= =?UTF-8?q?=E5=AE=A2=E8=B4=AD=E4=B9=B0=E6=97=B6=EF=BC=8C=E5=8F=AF=E4=BB=A5?= =?UTF-8?q?=E9=80=9A=E8=BF=87=E8=AE=B0=E5=BD=95=E5=BD=93=E5=89=8D=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=9C=B0=E5=9D=80=E5=90=8E=EF=BC=8C=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E8=87=AA=E5=B7=B1=E7=9A=84=E8=AE=A2=E5=8D=95=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=8F=8A=E7=89=A9=E6=B5=81=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- themes/default/checkout/success.blade.php | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/themes/default/checkout/success.blade.php b/themes/default/checkout/success.blade.php index 71a591ae..b9494cb1 100644 --- a/themes/default/checkout/success.blade.php +++ b/themes/default/checkout/success.blade.php @@ -93,6 +93,37 @@ + + @if ($order->orderShipments->count()) + @hookwrapper('checkout.order.shipments') +
+
{{ __('order.order_shipments') }}
+
+
+ + + + + + + + + + @foreach ($order->orderShipments as $ship) + + + + + + @endforeach + +
{{ __('order.express_company') }}{{ __('order.express_number') }}{{ __('order.history_created_at') }}
{{ $ship->express_company }}{{ $ship->express_number }}{{ $ship->created_at }}
+
+
+
+ @endhookwrapper + @endif +