@extends('layouts.mail') @section('content')
{{ __('front/mail.customer_name', ['name' => $order->customer_name]) }}
{{ __('front/order.order_details') }} :
| {{ __('front/order.order_number') }} | {{ __('front/order.order_date') }} | {{ __('front/order.order_status') }} | {{ __('front/order.order_total') }} |
| {{ $order->number }} | {{ $order->created_at }} | {{ $order->status_format }} | {{ currency_format($order->total, $order->currency_code, $order->currency_value) }} |
{{ __('front/order.order_items') }} :
| {{ __('front/order.image') }} | {{ __('front/order.product') }} | {{ __('front/order.quantity') }} | {{ __('front/order.subtotal') }} |
| {{ $product->name }} | {{ $product->quantity }} | {{ currency_format($product->price, $order->currency_code, $order->currency_value) }} |
{{ __('front/order.order_total') }} :
| {{ $total->title }} | {{ currency_format($total->value, $order->currency_code, $order->currency_value) }} |
{{ config('app.name') }}