From ec9f09f997f38d961106a55590810c1b088eb5c8 Mon Sep 17 00:00:00 2001 From: isaacclad Date: Thu, 11 Jun 2026 19:26:36 +0000 Subject: [PATCH] Fix payment notification copy to say paid to the business, not via. Co-authored-by: Cursor --- app/Services/Notifications/MiniNotificationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Notifications/MiniNotificationService.php b/app/Services/Notifications/MiniNotificationService.php index 02d96c5..ac89daf 100644 --- a/app/Services/Notifications/MiniNotificationService.php +++ b/app/Services/Notifications/MiniNotificationService.php @@ -23,7 +23,7 @@ class MiniNotificationService $businessName = $payment->qrCode?->content()['business_name'] ?? $payment->qrCode?->label ?? 'Payment QR'; $amount = $this->formatMoney($payment->currency, $payment->merchant_amount_minor ?: $payment->amount_minor); $title = 'Payment received'; - $message = sprintf('%s paid %s via %s.', $this->payerLabel($payment), $amount, $businessName); + $message = sprintf('%s paid %s to %s.', $this->payerLabel($payment), $amount, $businessName); $this->alert( $merchant,