@extends('admin.layouts.app')
@section('title', 'View Receive Amount')
@section('content')
| # |
Action |
Voucher No |
Payment Date |
Customer Name |
Amount |
Payment Mode |
@foreach ($payments as $index => $row)
| {{ $index + 1 }} |
|
{{ $row->Code }} |
{{ $row->PaymentDate ? $row->PaymentDate->format('d/m/Y') : '' }} |
{{ $row->AccountName }} |
₹{{ number_format((float) $row->Amount, 2) }} |
{{ $row->PayMode }} |
@endforeach
@endsection
@push('scripts')
@endpush