@if (!empty($status_details)) @foreach ($status_details as $row) {{ $row->invoice_number }} {{ $row->client_name }} {{ date('d M,Y',strtotime($row->created_at)) }} {{ $row->currency_symbol.' '.number_format(round($row->total_amount,2),2) }} {{ $row->currency_symbol.' '.number_format(round($row->balance_due_amount,2),2) }} @if($row->paid_amount == 0) {{ $overdue_time }} @else {{ $row->currency_symbol.' '.number_format(round($row->paid_amount,2),2) }} @endif @endforeach @endif