@extends('layouts.app') @section('title','Payments | BASCORE') @section('content')

Payments

Record collections and issue receipts.
Record Payment
@forelse($payments as $payment)@empty@endforelse
ReceiptInvoiceCustomerDateMethodAmountActions
{{ $payment->receipt_number }}{{ $payment->invoice->number }}{{ $payment->invoice->customer->customer_name }}{{ $payment->payment_date->format('d M Y') }}{{ str_replace('_',' ',ucfirst($payment->payment_method)) }}AED {{ number_format($payment->amount,2) }}ViewPDF
@csrf @method('delete')
No payments recorded yet.
{{ $payments->links() }}
@endsection