Payment
@csrf
Cash
Bank
{{--
Credit Note
--}}
Party
Bank
Credit Note
Credit Note Amount
Pending Amount
Payment Amount
Payment Detail
@if ($data['fullyReturn'] == 0) @if (number_format(($data['sales_order']['net_amount'] ?? 0) - ($data['payment_history']['paid_amount'] ?? 0), 2) != 0)
Add Payment
@endif @endif
#
Party Name
Amount
@if (!empty($data['payment_history']) && count($data['payment_history']) > 0) @foreach ($data['payment_history'] as $index => $item) @if (is_numeric($index))
{{ $loop->iteration }}
{{ $item['party_name'] }}
{{ number_format($item['dr_value'] ?? '0.00', 2) }}
@endif @endforeach @else
No data found
@endif