@extends('storefront.layout') @section('title', 'Order placed') @section('content')

Order placed successfully

Your order number is {{ $order->order_number }}.

Payment method: {{ ucwords(str_replace('_', ' ', (string) ($order->payment_method ?? 'N/A'))) }}

@if(!empty($order->transaction_id))

Transaction ID: {{ $order->transaction_id }}

@endif

We have sent a confirmation email. @if(!empty($order->customer_email)) Sent to {{ $order->customer_email }}. @endif

@endsection