Subtotal:
${{ number_format($this->calculateSubtotal(), 2) }}
@if($discount_amount > 0)
Discount:
-${{ number_format($discount_amount, 2) }}
@endif
Tax ({{ $tax_rate }}%):
${{ number_format($this->calculateTax(), 2) }}
Total:
${{ number_format($this->calculateTotal(), 2) }}