{{ __('sl') }} | {{ __('date') }} | {{ __('supplier') }} | {{ __('grand_total') }} | {{ __('paid') }} | {{ __('due') }} | {{ __('payment_status') }} |
---|---|---|---|---|---|---|
{{ $loop->iteration }} | {{ dateFormat($purchase->date) }} | {{ $purchase->supplier->name }} | {!! numberFormat($purchase->grand_total) !!} | {!! numberFormat($purchase->paid_amount) !!} | {!! numberFormat($due_amount) !!} | @if (!$purchase->payment_status) {{ __('due') }} @else {{ __('paid') }} @endif |
{{ __('total') }} | {{ numberFormat($total_grand_total) }} | {{ numberFormat($total_paid) }} | {{ numberFormat($total_due) }} |