From 82f2a752bca091a9e23ec9fc14720e157ad47bc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Sun, 20 Jun 2021 16:11:47 +0300 Subject: [PATCH] fixed notifications class --- app/Http/Livewire/Common/Notifications/Recurring.php | 2 +- app/Http/Livewire/Common/Notifications/Reminder.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Livewire/Common/Notifications/Recurring.php b/app/Http/Livewire/Common/Notifications/Recurring.php index 9017eba60..297c3c289 100644 --- a/app/Http/Livewire/Common/Notifications/Recurring.php +++ b/app/Http/Livewire/Common/Notifications/Recurring.php @@ -44,7 +44,7 @@ class Recurring extends Component { $limit = 5; - $notifications = getNotifications($limit); + $notifications = $this->getNotifications($limit); return view('livewire.common.notifications.recurring', compact('notifications')); } diff --git a/app/Http/Livewire/Common/Notifications/Reminder.php b/app/Http/Livewire/Common/Notifications/Reminder.php index cb3507308..66c2f4f36 100644 --- a/app/Http/Livewire/Common/Notifications/Reminder.php +++ b/app/Http/Livewire/Common/Notifications/Reminder.php @@ -44,7 +44,7 @@ class Reminder extends Component { $limit = 5; - $notifications = getNotifications($limit); + $notifications = $this->getNotifications($limit); return view('livewire.common.notifications.reminder', compact('notifications')); }