Order Confirmation & Receipt
Bill To:
{{ $order->address->receiver_name ?? 'Customer' }}
@if(isset($order->address->receiver_email) && $order->address->receiver_email) {{ $order->address->receiver_email }} @endif {{ $order->address->receiver_phone ?? '' }} |
Invoice #: ORD-2025-{{ $order->cart_id ?? 'N/A' }}
Date: {{ $order->order_date ?? now()->format('F j, Y') }} Status: {{ ucfirst($order->order_status ?? 'Processing') }} Payment Method: {{ $order->payment_method ?? 'Credit Card' }} {{-- Payment Status: @php $paymentStatus = $order->payment_status ?? 'pending'; $statusColor = $paymentStatus === 'completed' ? '#27ae60' : ($paymentStatus === 'failed' ? '#e74c3c' : '#f39c12'); @endphp {{ ucfirst($paymentStatus) }} --}} |
|
{{ $item->product_name ?? 'Product Name' }}
@if(isset($item->variation->variation_attributes) && $item->variation->variation_attributes->isNotEmpty())
@php
$attributes = $item->variation->variation_attributes
->map(function ($attribute) {
return ($attribute->attribute->attribute->name ?? 'Attribute') . ': ' . ($attribute->attribute->name ?? 'Value');
})
->implode(', ');
@endphp
{{ $attributes }}
@endif
|
No items found in this order.
| Subtotal: | Rs.{{ number_format($subtotal, 2) }} |
| Shipping: | Rs.{{ number_format($order->shipping_cost ?? 0, 2) }} |
|
Coupon Discount
@if(isset($order->coupon) && isset($order->coupon->coupon_name))
({{ $order->coupon?->coupon_name }}) @endif |
-Rs.{{ number_format($order->coupon_discount, 2) }} |
| Total Amount: | Rs.{{ number_format($order->total_price ?? 0, 2) }} |
Email: support@soapopera.in
Phone: 9820166550, 9321319542
Soap Opera
© 2025 Soap Opera. All rights reserved.