@extends('admin.layouts.app') @section('title', 'View Receive Amount') @section('content')

View Receive Amount Receive Amount

@foreach ($payments as $index => $row) @endforeach
# Action Voucher No Payment Date Customer Name Amount Payment Mode
{{ $index + 1 }}
@csrf @method('DELETE')
{{ $row->Code }} {{ $row->PaymentDate ? $row->PaymentDate->format('d/m/Y') : '' }} {{ $row->AccountName }} ₹{{ number_format((float) $row->Amount, 2) }} {{ $row->PayMode }}
@endsection @push('scripts') @endpush