@extends('emails.email-template') @section('content')

Thank you for your order, {{ $order->customer->first_name . ' ' . $order->customer->last_name ?? 'Customer' }}!

We've received your order #{{ $order->order_no }} on {{ $order->created_at->format('F j, Y \a\t g:i A') }}.

Your order is being processed, and we'll notify you once it's on the way.

Delivery Address:

@php $shipping_address = json_decode($order->shipping_address_data, true); @endphp

{{ $shipping_address['street_address'] ?? '' }} {{ !empty($shipping_address['address_line2']) ? ', '.$shipping_address['address_line2'] : '' }}, {{ $shipping_address['city'] ?? '' }}, {{ $shipping_address['zip'] ?? '' }}, {{ $shipping_address['state'] ?? '' }}, {{ $shipping_address['country'] ?? '' }}

If you have any questions, feel free to contact us at support@tvikla.com.

Thank you for shopping with us!

@endsection