@extends('layouts.admin') @section('title', 'Payment Receipts') @section('page-title', 'Payment Receipts') @section('content')

All Receipts

View and manage payment receipts

search
@if(request()->hasAny(['search', 'date_from', 'date_to'])) Clear @endif
@forelse($receipts as $receipt) @empty @endforelse
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
{{ $receipts->links() }}
@endsection