New Order Received
A new order has been placed on {{ config('app.name') }}.
Order Details
| Order Number: |
{{ $order->order_number }} |
| Transaction ID: |
{{ $order->transaction_id }} |
| Total Items: |
{{ $order->total_items }} |
| Total Amount: |
${{ number_format($order->total_price, 2) }} |
| Payment Method: |
{{ ucfirst($order->payment_method) }} |
Shipping Details
| Name: |
{{ $order->user->name ?? $order->user->first_name . ' ' . $order->user->last_name ?? 'N/A' }} |
| Email: |
{{ $order->user->email ?? 'N/A' }} |
| Address: |
{{ $order->shipping_address }} |
| City: |
{{ $order->city }} |
| Postal Code: |
{{ $order->postal_code }} |
@if($order->apartments)
| Apartment: |
{{ $order->apartments }} |
@endif
Thanks,
{{ config('app.name') }}
|