@extends('layout.mail') @section('content')
{{ __('mail.customer_name', ['name' => $order->customer_name]) }}
{{ __('mail.order_update_status', ['number' => $order->number]) }}: {{ __("common.order.{$order->status}") }}
{{ __('shop/account.order.order_info.order_items') }}:
| {{ __('product.image') }} | {{ __('product.name') }} | {{ __('order.product_quantity') }} | {{ __('product.price') }} |
| {{ $product->name }} | {{ $product->quantity }} | {{ currency_format($product->price, $order->currency_code, $order->currency_value) }} |
{{ __('order.order_shipments') }}
| {{ __('order.express_company') }} | {{ __('order.express_number') }} | {{ __('order.history_created_at') }} |
| {{ $ship->express_company }} | {{ $ship->express_number }} | {{ $ship->created_at }} |
{{ __('shop/account.order.order_success.view_order') }}
{{ __('mail.sincerely') }}
{{ config('app.name') }} {{ __('mail.team') }}