INVOICE

#{{ $order->order_number }}
Issued on: {{ $order->created_at->format('M d, Y') }}
Billed To
{{ $order->user->name }}
{{ $order->user->email }}
Payment Method
{{ strtoupper($order->payment_method->value) }}
Status: {{ strtoupper($order->status->value) }}
Course Description Price
{{ $order->course->title }}
{{ $order->course->category->name }}
${{ number_format($order->amount, 2) }}
Subtotal ${{ number_format($order->amount, 2) }}
Discount -$0.00
Total Amount ${{ number_format($order->total_amount, 2) }}