@extends('layouts.app') @section('title', 'SaaS Payments History') @section('content')
Record of all offline, bank transfer, and gateway payments received from tenants.
| Payment # | Tenant Company | Date | Method | Reference | Amount | Recorded By |
|---|---|---|---|---|---|---|
| {{ $payment->payment_number }} | {{ $payment->tenant->company_name }} | {{ $payment->payment_date->format('d M Y') }} | {{ str_replace('_', ' ', $payment->payment_method) }} | {{ $payment->transaction_reference ?? 'N/A' }} | AED {{ number_format($payment->amount, 2) }} | {{ $payment->receiver ? $payment->receiver->name : 'System' }} |