@extends('layouts.mail') @section('content')

{{ __('front/mail.order_update') }}

{{ __('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') }} :

@foreach ($order->items as $product) @endforeach
{{ __('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') }} :

@foreach ($order->fees as $total) @endforeach
{{ $total->title }} {{ currency_format($total->value, $order->currency_code, $order->currency_value) }}

{{ __('front/common.view') }}


{{ config('app.name') }}

@endsection