|
@if ($logo != null)
|
| {{ get_setting('site_name') }} | |
| {{ get_setting('contact_address') }} | |
| {{ translate('Email') }}: {{ get_setting('contact_email') }} | |
| {{ translate('Phone') }}: {{ get_setting('contact_phone') }} |
{{ translate('Dear') }} {{ $customer->name }},
{{ translate('Your account has been successfully created and your order has been placed.') }}
{{ translate('Email') }}: {{ $customer->email }}
{{ translate('Temporary Password') }}: {{ $tempPassword }}
{{ translate('Important') }}: {{ translate('Please change your password after logging in for security purposes.') }}
| {{ translate('Order ID') }}: | {{ $order->code }} |
| {{ translate('Order Date') }}: | {{ date('d-m-Y', $order->date) }} |
| {{ translate('Payment Method') }}: | {{ ucfirst(str_replace('_', ' ', $order->payment_type)) }} |
| {{ translate('Payment Status') }}: | {{ ucfirst($order->payment_status) }} |
| {{ translate('Shipping Address') }}: |
| {{ $shipping_address->name ?? $customer->name }} |
| {{ $shipping_address->address ?? '' }}@if (isset($shipping_address->city)) , {{ $shipping_address->city }} @endif@if (isset($shipping_address->country)) , {{ $shipping_address->country }} @endif |
| {{ translate('Email') }}: {{ $shipping_address->email ?? $customer->email }} |
| {{ translate('Phone') }}: {{ $shipping_address->phone ?? $customer->phone }} |
| {{ translate('Product Name') }} | {{ translate('Qty') }} | {{ translate('Unit Price') }} | {{ translate('Total') }} |
|---|---|---|---|
| {{ $orderDetail->product->getTranslation('name') }} @if ($orderDetail->variation != null)
({{ $orderDetail->variation }}) @endif |
{{ $orderDetail->quantity }} | {{ single_price($orderDetail->price / $orderDetail->quantity) }} | {{ single_price($orderDetail->price + $orderDetail->tax) }} |
|
{{ translate('Lens') }}: {{ $lens['name'] }}
@if (isset($lens['color']) && !empty($lens['color']))
{{ translate('Color') }}: @endif |
{{ $orderDetail->quantity }} | {{ single_price($lens['price'] ?? 0) }} | {{ single_price(($lens['price'] ?? 0) * $orderDetail->quantity) }} |
| {{ translate('Sub Total') }} | {{ single_price($order->orderDetails->sum('price')) }} |
|---|---|
| {{ translate('Tax') }} | {{ single_price($order->orderDetails->sum('tax')) }} |
| {{ translate('Shipping') }} | {{ single_price($order->orderDetails->sum('shipping_cost')) }} |
| {{ translate('Discount') }} | -{{ single_price($order->coupon_discount) }} |
| {{ translate('Grand Total') }} | {{ single_price($order->grand_total) }} |
{{ translate('You can view your order details and track your shipment by logging into your account.') }}
{{ translate('If you have any questions, please contact us at') }} {{ get_setting('contact_email') }}
{{ translate('Thank you for shopping with us!') }}