{{ __('Shop order number')." ".$order->Order_Number.__(' was canceled')." ".$status." ".__('on')." ".$currentDateTime }}
{{ __('The order details was as the below:') }}
@endif @php $bill = json_decode($order->billing_address, true); @endphp
{{ __('Order Number:') }} {{ $order->Order_Number }}
{{ __('Name:') }} {{ $bill['name'] }}
{{ __('Email:') }} {{ $bill['email'] }}
{{ __('Date:') }}
@php
$userTimezone = 'Asia/Amman';
echo $order->created_at->setTimezone($userTimezone);
@endphp
{{ __('Payment Method: ') }} {{ $order->Payment_Method }}
{{ __('TXN: ') }} {{ $order->txn }}
{{ __('Billing Address:') }}
{{ $bill['name'] }}
{{ $bill['email'] }}
{{ $bill['street'] }}
{{ $bill['state'] }}
{{ $bill['country'] . __(',') }} {{ $bill['zipcode'] }}
{{ __('Shipping Address:') }}
{{ $ship['name'] }}
{{ $ship['email'] }}
{{ $ship['street'] }}
{{ $ship['state'] }}
{{ $ship['country'] . __(',') }} {{ $ship['zipcode'] }}
{{ __('Name') }} | {{ __('Image') . __('Accept: JPG,PNG,SVG') }} | {{ __('Quantity') }} | {{ __('Size') }} | {{ __('Color') }} | {{ __('Price') }} | {{ __('Total') }} |
---|---|---|---|---|---|---|
{{ $od->product->en_Product_Name }} | {{ $od->Quantity }} | {{ is_null($od->Size) ? __('N/A') : $od->Size }} | {{ is_null($od->Color) ? __('N/A') : $od->Color }} | {{ $od->Price }} | {{ $od->Total_Price }} | |
{{ __('Subtotal') }} | {{ $order->Sub_Total }} | |||||
{{ __('Shipping Charge') }} | {{ $order->Delivery_Charge }} | |||||
{{ __('Tax') }} | {{ $order->Tax }} | |||||
{{ __('Discount (-)') }} | {{ $order->Coupon_Amount }}% | |||||
{{-- | --}} | {{ __('User Discount (-)') }} | {{ $order->user_discount }}% | |||
{{ __('Grand Total') }} | {{ number_format((float) $order->Grand_Total, 2, '.', '') }} |