@extends('layouts.dashboard') @section('title', 'Payment Receipts') @section('header', 'Payment Receipts Management') @section('sidebar') @include('owner.partials.sidebar') @endsection @section('content')
View and manage all payment receipts issued
| Receipt Number | Customer | Payment Reference | Amount | Issued Date | Actions |
|---|---|---|---|---|---|
|
{{ $receipt->receipt_number }}
{{ $receipt->created_at->format('M d, Y') }}
|
{{ $receipt->customer->name ?? 'N/A' }}
{{ $receipt->customer->email ?? 'N/A' }}
|
{{ $receipt->payment->payment_number ?? 'N/A' }}
{{ $receipt->payment->payment_method ?? 'N/A' }}
|
{{ number_format($receipt->amount, 0) }}
{{ $receipt->currency }}
|
{{ \Carbon\Carbon::parse($receipt->issued_at)->format('M d, Y h:i A') }} | |
|
No receipts found Generate your first receipt to get started |
|||||