diff --git a/app/Listeners/Purchase/SendBillReminderNotification.php b/app/Listeners/Purchase/SendBillReminderNotification.php index 1554b5c9b..a16cda51d 100644 --- a/app/Listeners/Purchase/SendBillReminderNotification.php +++ b/app/Listeners/Purchase/SendBillReminderNotification.php @@ -2,7 +2,7 @@ namespace App\Listeners\Purchase; -use App\Events\Purchase\BillReminding as Event; +use App\Events\Purchase\BillReminded as Event; use App\Notifications\Purchase\Bill as Notification; class SendBillReminderNotification diff --git a/app/Listeners/Sale/SendInvoiceReminderNotification.php b/app/Listeners/Sale/SendInvoiceReminderNotification.php index b22976ae7..37323eff8 100644 --- a/app/Listeners/Sale/SendInvoiceReminderNotification.php +++ b/app/Listeners/Sale/SendInvoiceReminderNotification.php @@ -2,7 +2,7 @@ namespace App\Listeners\Sale; -use App\Events\Sale\InvoiceReminding as Event; +use App\Events\Sale\InvoiceReminded as Event; use App\Notifications\Sale\Invoice as Notification; class SendInvoiceReminderNotification diff --git a/app/Providers/Event.php b/app/Providers/Event.php index 7161c02e2..f43284629 100644 --- a/app/Providers/Event.php +++ b/app/Providers/Event.php @@ -39,7 +39,7 @@ class Event extends Provider 'App\Events\Purchase\BillRecurring' => [ 'App\Listeners\Purchase\SendBillRecurringNotification', ], - 'App\Events\Purchase\BillReminding' => [ + 'App\Events\Purchase\BillReminded' => [ 'App\Listeners\Purchase\SendBillReminderNotification', ], 'App\Events\Sale\PaymentReceived' => [ @@ -62,7 +62,7 @@ class Event extends Provider 'App\Events\Sale\InvoiceRecurring' => [ 'App\Listeners\Sale\SendInvoiceRecurringNotification', ], - 'App\Events\Sale\InvoiceReminding' => [ + 'App\Events\Sale\InvoiceReminded' => [ 'App\Listeners\Sale\SendInvoiceReminderNotification', ], 'App\Events\Menu\AdminCreated' => [