fixed notifications class

This commit is contained in:
Cüneyt Şentürk 2021-06-20 16:11:47 +03:00
parent 7c941f46a8
commit 82f2a752bc
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ class Recurring extends Component
{ {
$limit = 5; $limit = 5;
$notifications = getNotifications($limit); $notifications = $this->getNotifications($limit);
return view('livewire.common.notifications.recurring', compact('notifications')); return view('livewire.common.notifications.recurring', compact('notifications'));
} }

View File

@ -44,7 +44,7 @@ class Reminder extends Component
{ {
$limit = 5; $limit = 5;
$notifications = getNotifications($limit); $notifications = $this->getNotifications($limit);
return view('livewire.common.notifications.reminder', compact('notifications')); return view('livewire.common.notifications.reminder', compact('notifications'));
} }