From f97c769766ac2c96a98afc8fcfed7736a03dc82d Mon Sep 17 00:00:00 2001 From: merdan Date: Thu, 7 May 2020 14:06:47 +0500 Subject: [PATCH] help desk notification ticketreceived fix --- app/Notifications/TicketReceived.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Notifications/TicketReceived.php b/app/Notifications/TicketReceived.php index 42192b99..42f6d939 100644 --- a/app/Notifications/TicketReceived.php +++ b/app/Notifications/TicketReceived.php @@ -58,6 +58,7 @@ class TicketReceived extends Notification implements ShouldQueue return (new MailMessage) ->line('The introduction to the notification.') ->line($this->ticket->text) + ->line($this->ticket->created_at) ->action('Notification Action', route('help.show',['code' => $this->ticket->code])) ->line('Thank you for using our application!'); } @@ -65,6 +66,7 @@ class TicketReceived extends Notification implements ShouldQueue return (new MailMessage) ->line('You have new ticket') ->line($this->ticket->text) + ->line($this->ticket->created_at) ->action('Notification Action', route('ticket.replay',['id'=>$this->ticket->id])) ->line('Thank you for using our application!');