Hi {{ $payload['name'] ?? '' }}

We received your order and will get started on it right away. Our customer service member will get back to you shortly.

Estimated Delivery: Within 7 days

Order ID: {{ $order['order_id'] ?? '' }}

@foreach ($products as $product) @php $groupedBundles = []; if (!empty($product['bundle_data'])) { foreach ($product['bundle_data'] as $bundle) { $pid = $bundle['product_id']; if (!isset($groupedBundles[$pid])) { $groupedBundles[$pid] = [ 'name' => $bundle['product']['name'] ?? '', 'qty' => 0, 'price' => 0 ]; } $groupedBundles[$pid]['qty'] += $bundle['max_qty']; $groupedBundles[$pid]['price'] += $bundle['price']; } } @endphp @endforeach @if (($payload['payment_method'] ?? '') === 'online') @endif @if (!empty($payload['coupon']['total_discount'])) @endif
Product Quantity Price

{{ $product['product_name'] }}

@foreach ($groupedBundles as $b)

{{ $b['name'] }}

@endforeach

{{ $product['quantity'] }} Pcs

@foreach ($groupedBundles as $b)

{{ $b['qty'] }} Pcs

@endforeach

Tk {{ ($product['total'] ?? 0) - ($product['bundle_price'] ?? 0) }}

@foreach ($groupedBundles as $b)

Tk {{ $b['price'] }}

@endforeach
Shipping Charge: Tk {{ $order['shipping_charge'] ?? 0 }}
SSL Charge: Tk {{ $order['ssl_charge'] ?? 0 }}
Coupon Discount: Tk {{ $payload['coupon']['total_discount'] }}
Gross Total: Tk {{ $order['payable_amount'] ?? 0 }}

Thank You,

Team Pippa Notification Service