Labor Cost:
${{ number_format($this->getTotalLaborCost(), 2) }}
Parts Cost:
${{ number_format($this->getTotalPartsCost(), 2) }}
@if($discount_amount > 0)
Discount:
-${{ number_format($discount_amount, 2) }}
@endif
Subtotal:
${{ number_format($this->getSubtotal(), 2) }}
Tax (8%):
${{ number_format($this->getTaxAmount(), 2) }}
Total:
${{ number_format($this->getGrandTotal(), 2) }}