From 9a47156f6afbea321d9a752785a75a72fc5c743c Mon Sep 17 00:00:00 2001 From: merdan Date: Wed, 6 May 2020 21:01:08 +0500 Subject: [PATCH] help desk notification ticketCommented --- app/Http/Controllers/HelpDeskController.php | 1 + app/Notifications/TicketCommented.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/HelpDeskController.php b/app/Http/Controllers/HelpDeskController.php index f5b3acbe..286fc175 100644 --- a/app/Http/Controllers/HelpDeskController.php +++ b/app/Http/Controllers/HelpDeskController.php @@ -9,6 +9,7 @@ use App\Http\Requests\HelpTicketRequest; use App\Models\HelpTicket; use App\Models\HelpTicketComment; use App\Models\HelpTopic; +use App\Models\User; use App\Notifications\TicketReceived; use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Notification; diff --git a/app/Notifications/TicketCommented.php b/app/Notifications/TicketCommented.php index 23a11268..2384bf55 100644 --- a/app/Notifications/TicketCommented.php +++ b/app/Notifications/TicketCommented.php @@ -8,7 +8,7 @@ use Illuminate\Notifications\Notification; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; -class TicketCommented extends Notification +class TicketCommented extends Notification implements ShouldQueue { use Queueable;