From 54a563082f05074d0103fb2bbf81a0c248b7726a Mon Sep 17 00:00:00 2001 From: 1Day Date: Thu, 2 Dec 2021 12:29:48 +0100 Subject: [PATCH] mini-typo --- app/Notifications/InvoiceNotification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Notifications/InvoiceNotification.php b/app/Notifications/InvoiceNotification.php index 65f8ea0d..2e76a7f5 100644 --- a/app/Notifications/InvoiceNotification.php +++ b/app/Notifications/InvoiceNotification.php @@ -57,7 +57,7 @@ class InvoiceNotification extends Notification return (new MailMessage) ->subject('Your Payment was successful!') ->greeting('Hello,') - ->line("your payment was processed successfully!") + ->line("Your payment was processed successfully!") ->line('Status: ' . $this->payment->status) ->line('Price: ' . $this->payment->formatToCurrency($this->payment->total_price)) ->line('Type: ' . $this->payment->type)