@extends('layouts.admin') @section('title', 'Payment Receipts') @section('page-title', 'Payment Receipts') @section('content')
View and manage payment receipts
| Receipt Number | Customer | Invoice Number | Amount | Payment Method | Date | Actions |
|---|---|---|---|---|---|---|
| {{ $receipt->receipt_number }} |
{{ $receipt->customer->name }}
{{ $receipt->customer->email ?? '' }}
|
{{ $receipt->invoice->invoice_number }} | ${{ number_format($receipt->amount, 2) }} | {{ ucfirst(str_replace('_', ' ', $receipt->payment_method)) }} | {{ $receipt->created_at->format('M d, Y') }} | |
| No receipts found | ||||||