Implement dark mode, bug report page, and schema dump

This commit is contained in:
2025-11-27 15:06:45 +08:00
parent 13bc6db529
commit 83602b1ed1
91 changed files with 1078 additions and 2291 deletions

View File

@@ -18,6 +18,12 @@ class PaymentSubmittedMail extends Mailable implements ShouldQueue
public MembershipPayment $payment,
public string $recipient // 'member' or 'cashier'
) {
$subject = $this->recipient === 'member'
? 'Payment Submitted Successfully - Awaiting Verification'
: 'New Payment Submitted for Verification - ' . $this->payment->member->full_name;
// Set subject property for assertion compatibility
$this->subject($subject);
}
public function envelope(): Envelope