@extends('emails.layouts.main') @section('title', 'Payment Issue - Complete Your Order') @section('content')
⚠️
Payment Issue Detected
Hi {{$userName}},

We noticed that there was an issue completing your payment for the items in your order. Don't worry - your order is still reserved for you!

You can reply to this email if you have any questions.
Pending Order Information
Order No: #{{$order->id}}
Order Date: {{$order->created_at->format('Y-m-d H:i:s')}}
Status: Payment Pending
@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 == 'ebook') { $itemDetails = $item->ebook ?? null; }elseif($item->item_type == 'bootcamp') { $itemDetails = $item->bootcamp ?? null; } else { $itemDetails = null; } @endphp @if($itemDetails) @endif @endforeach
Items Waiting for Payment
{{ucfirst($item->item_type)}} - {{$itemDetails->title}} ${{$item->price}}
Fee ${{$order->fee}}
Total Amount: ${{$order->total_price + $order->fee}}
Complete Payment Now
Don't lose access to these amazing courses!


If you're experiencing payment issues, our support team is here to help.

If you have any questions or need help completing your payment, feel free to contact our support team at sales@orhanergun.net. You can also join our community on Discord: https://discord.com/invite/My3QVwXvPh
@endsection