@extends('emails.layouts.main') @section('title', 'Order Confirmation') @section('content')
Payment Successful!
Hi {{$userName}},

Your order has been successfully received and confirmed. Your order details are below.

You can reply to this email if you have any questions.
Order Information
Order No: #{{$order->id}}
Order Date: {{$order->created_at}}
@foreach($order->items as $item) @php if($item->item_type == 'course') { $itemDetails = $item->course; } elseif($item->item_type == 'bundle') { $itemDetails = $item->bundle; }elseif($item->item_type == 'bootcamp') { $itemDetails = $item->bootcamp; }elseif($item->item_type == 'ebook') { $itemDetails = $item->ebook; }elseif($item->item_type == 'lab-credit'){ $itemDetails = $item->labCredit; } @endphp @endforeach
Order Content
{{$itemDetails->title}}
Total Amount: {{$order->total_price+$order->fee}} $
You can contact us for any questions about your order.


Thank you for choosing us!

If you have any questions or need help with your purchase, feel free to contact our support team. You can also join our study group on Discord using this link: https://discord.com/invite/My3QVwXvPh
@endsection