Aged Payables
{{ucfirst($business_name)}}
Suppliers balance as on {{date("d M Y",strtotime($date))}}
@foreach($aged_payables_data as $data) @endforeach
Payables 30 Days 60 Days 90 Days Older Current
@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)}}
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)}} %