@extends('layouts.app') @section('title','Receipt Vouchers') @section('pages')
@csrf
@if(!isset($redirect) || $redirect != 'sale-billings')
    @endif
      {{--
        --}}
        @php $collection_amount = $sale_invoice->billing_amount - $sale_invoice->discount_amount; @endphp @php $ids = []; @endphp @foreach($creditTransaction as $key => $list) @php $ids[] = $list->account_id; @endphp @endforeach @foreach($accounting_group as $key => $list) @endforeach @if(isset($redirect) && $redirect == 'sale') @endif
        #
        Billing Amount
        {!! convertDecimelPoint($sale_invoice->billing_amount) !!}
        Adjusted Amount
        {!! convertDecimelPoint($sale_invoice->discount_amount) !!}
        Collection Amount
        {!! convertDecimelPoint($collection_amount) !!}
        Sr No. Transaction Date Transaction Mode Transaction Referrence Amount
        {{ $key + 1 }} {{ $list->account->name ?? ''}}
        {{ $key + 1 }} {{$list->name ?? ''}}
        Total Received
        Total Due
        @endsection @section('js') @endsection