Back to Order
INVOICE

#{{ $order->order_number }}

Bill To

{{ $order->user?->name }}

{{ $order->user?->email }}

@if($order->user?->phone)

{{ $order->user->phone }}

@endif

Invoice Details

Date: {{ $order->created_at->format('M d, Y') }}

Status: {{ ucfirst($order->payment_status) }}

@if($order->paid_at)

Paid: {{ $order->paid_at->format('M d, Y') }}

@endif
@foreach($order->items as $item) @endforeach
DescriptionPriceDiscountTotal
{{ $item->course?->title }} ₹{{ number_format($item->price, 2) }} ₹{{ number_format($item->discount, 2) }} ₹{{ number_format($item->total, 2) }}
Subtotal₹{{ number_format($order->subtotal, 2) }}
Discount-₹{{ number_format($order->discount, 2) }}
Tax (18%)₹{{ number_format($order->tax, 2) }}
Total₹{{ number_format($order->total, 2) }}