আপনার অর্ডারটি কনফার্ম করা হয়েছে
@elseif($orderStatus == 'Pending')অ্যাডমিন কনফার্মেশনের অপেক্ষায়
@elseদুঃখিত, লেনদেনটি সম্পন্ন হয়নি
@endif{{ $order->customer->phone ?? 'N/A' }}
{{ $order->customer->address ?? 'N/A' }}
ইনভয়েস: #{{ $order->order_number }}
তারিখ: {{ $order->created_at->format('d M, Y') }}
মেথড: {{ $order->payment_method }}
| বিবরণ | ধরণ | টাকা |
|---|---|---|
|
{{ $hostingPlan->name }}
Hosting Package (Yearly)
|
Hosting | ৳ {{ number_format($hostingPlan->price_yearly, 2) }} |
|
{{ $order->description }}
{{-- [LOGIC FIX] ডেসক্রিপশন চেক করে সাব-টাইটেল ঠিক করা --}}
@if(\Illuminate\Support\Str::contains($order->description, 'Hosting Order'))
Linked / Existing Domain
@else
Domain Registration (1 Year)
@endif
|
Domain | @php // ডোমেইন প্রাইস বের করা (মোট টাকা থেকে হোস্টিং বাদ দিয়ে) $hostingPrice = $hostingPlan ? $hostingPlan->price_yearly : 0; $domainPrice = $order->total_amount - $hostingPrice; @endphp @if($domainPrice <= 0) ফ্রি / অন্তর্ভুক্ত @else ৳ {{ number_format($domainPrice, 2) }} @endif |