From 402c54d3f7de47506d2a2eb999be2a6f46480da5 Mon Sep 17 00:00:00 2001 From: merdan Date: Wed, 6 May 2020 22:07:31 +0500 Subject: [PATCH] help desk notification ticketCommented --- app/Notifications/TicketReceived.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Notifications/TicketReceived.php b/app/Notifications/TicketReceived.php index 41ebed18..31cfe3e0 100644 --- a/app/Notifications/TicketReceived.php +++ b/app/Notifications/TicketReceived.php @@ -55,13 +55,13 @@ class TicketReceived extends Notification implements ShouldQueue if($notifiable instanceof HelpTicket){ return (new MailMessage) ->line('The introduction to the notification.') - ->action('Notification Action', route('help.show',['code' => $this->ticket->code])) +// ->action('Notification Action', route('help.show',['code' => $this->ticket->code])) ->line('Thank you for using our application!'); } else return (new MailMessage) ->line('You have new ticket') - ->action('Notification Action', route('ticket.replay',['id'=>$this->ticket->id])) +// ->action('Notification Action', route('ticket.replay',['id'=>$this->ticket->id])) ->line('Thank you for using our application!'); Log::info('Mail Notification: ',$notifiable);