| Total Health District Fees Due |
{{--
@php
$sub_total = $invoice->sub_total_amount ? $invoice->sub_total_amount : 0;
$late_fee = $invoice->late_fee ? $invoice->late_fee : 0;
$day_fee = $invoice->dayWiseAmount ? $invoice->dayWiseAmount : 0;
$d_a = $invoice->disc_or_add ? $invoice->disc_or_add : '';
$d_a_amount = $invoice->disc_or_add_amount ? $invoice->disc_or_add_amount : 0;
$total = $sub_total + $late_fee +$day_fee ;
if( $d_a == 'Additional'){
$total = $total + $d_a_amount;
}else {
$total = $total - $d_a_amount;
}
@endphp
$ {{ $total ? $total : '0' }} | --}}
$
{{ $invoice->total_amount ? $invoice->total_amount : '0' }} |