From 66cf70bd41e98e5724afc3c0ebb8233e700fb5b6 Mon Sep 17 00:00:00 2001 From: NishaSharma14 Date: Tue, 12 Dec 2023 15:42:46 +0100 Subject: [PATCH] conflict resolve --- app/Listeners/ProjectArchival.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Listeners/ProjectArchival.php b/app/Listeners/ProjectArchival.php index 2c43f966..a1d7580d 100644 --- a/app/Listeners/ProjectArchival.php +++ b/app/Listeners/ProjectArchival.php @@ -23,6 +23,6 @@ public function __construct() public function handle(object $event): void { Notification::send($event->sendTo, new ProjectArchivalNotification($event->project)); - Notification::send(User::role(['super-admin'])->get(), new ProjectArchivalNotificationToAdmins($this)); + Notification::send(User::role(['super-admin'])->get(), new ProjectArchivalNotificationToAdmins($event->project)); } }