From 910e7e7169ec0e105cf30790967ecd2ea9ce6288 Mon Sep 17 00:00:00 2001 From: merdan Date: Thu, 7 May 2020 14:37:52 +0500 Subject: [PATCH] help desk notification ticketreceived fix --- app/Notifications/TicketReceived.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/Notifications/TicketReceived.php b/app/Notifications/TicketReceived.php index 42f6d939..4feec47c 100644 --- a/app/Notifications/TicketReceived.php +++ b/app/Notifications/TicketReceived.php @@ -53,7 +53,6 @@ class TicketReceived extends Notification implements ShouldQueue public function toMail($notifiable) { try{ - Log::info('Mail Notification: ',$notifiable); if($notifiable instanceof HelpTicket){ return (new MailMessage) ->line('The introduction to the notification.') @@ -87,6 +86,5 @@ class TicketReceived extends Notification implements ShouldQueue public function toDatabase($notifiable) { return $this->ticket->toArray(); - Log::info('Database Notification: ',$notifiable); } }