@extends ('focus.report.pdf.statement') @section('statement_body') @php $fill = false; $balance=0; foreach ($account_details as $row) { if ($fill == true) { $flag = ' mfill'; } else { $flag = ''; } $balance += $row['tax']; echo ''; $fill = !$fill; } @endphp
{{trans('general.date')}} {{trans('orders.order')}}# {{$lang['party_2']}} {{trans('general.total')}} {{trans('general.tax')}} {{trans('accounts.balance')}}
' . dateFormat($row['invoicedate']) . '' . $row['tid'] . '' . $row->customer->name . '' . amountFormat($row['total']) . '' . amountFormat($row['tax']) . '' . amountFormat($balance) . '


{{trans('general.summary')}}
{{trans('accounts.balance')}}: {{amountFormat($balance)}}
@endsection