@component('mail::message') # Thank you for your purchase.
Hi {{ $order->user->first_name }} {{ $order->user->last_name }},
Below are your order summary, You can check your order details at any time, by going to Orders in your profile.
| Order Number | #{{ $order->number }} |
| Total | {{ config('app.currency') }} {{ $order->total }} |
| Order Date | {{ $order->date_formatted }} |
| Payment Method | @if ($order->payment) {{ $order->payment->method_text }} @elseif ($order->amount_to_pay == 0) Fully paid with points. @else No payment recorded. @endif |
| Payment Status | {{ $order->payment_status_text }} |
| Shipping Status | {{ $order->shipping_status_text }} |