Order Number:
{{ $order->order_number }}
Customer:
{{ $order->customer->name }}
Total Amount:
${{ number_format($order->total_amount, 2) }}
Paid Amount:
${{ number_format($order->paid_amount, 2) }}
Remaining Balance:
${{ number_format($order->total_amount - $order->paid_amount, 2) }}