Fix payment notification copy to say paid to the business, not via.
Deploy Ladill Mini / deploy (push) Successful in 29s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-11 19:26:36 +00:00
co-authored by Cursor
parent 136bfbea47
commit ec9f09f997
@@ -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,