Payables |
30 Days |
60 Days |
90 Days |
Older |
Current |
@foreach($aged_payables_data as $data)
@if($show_by == "supplier")
{{ucfirst($supplier_name)}}
@else
{{$invoice_no}}
@endif
|
{{($data->age_by_day_30) ? number_format($data->age_by_day_30,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($data->age_by_day_60) ? number_format($data->age_by_day_60,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($data->age_by_day_90) ? number_format($data->age_by_day_90,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($data->age_by_before_90) ? number_format($data->age_by_before_90,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($current) ? number_format($current,$decimal_point) : number_format(0,$decimal_point)}}
|
@endforeach
|
|
|
|
|
|
Total |
{{($total_30) ? number_format($total_30,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($total_60) ? number_format($total_60,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($total_90) ? number_format($total_90,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($total_older) ? number_format($total_older,$decimal_point) : number_format(0,$decimal_point)}}
|
{{($total_current) ? number_format($total_current,$decimal_point) : number_format(0,$decimal_point)}}
|
|
{{($prcentage_30) ? number_format($prcentage_30,$decimal_point) : number_format(0,$decimal_point)}} %
|
{{($prcentage_60) ? number_format($prcentage_60,$decimal_point) : number_format(0,$decimal_point)}} %
|
{{($prcentage_90) ? number_format($prcentage_90,$decimal_point) : number_format(0,$decimal_point)}} %
|
{{($prcentage_old) ? number_format($prcentage_old,$decimal_point) : number_format(0,$decimal_point)}} %
|
|