@extends('layouts.dashboard') @section('title', 'Payment Receipts') @section('header', 'Payment Receipts Management') @section('sidebar') @include('company-admin.partials.sidebar') @endsection @section('content')
View and manage all payment receipts issued by your company
| Receipt Number | Customer | Payment Reference | Owner | 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' }}
|
{{ $receipt->owner->name ?? '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 Receipts will appear here once generated |
||||||