diff --git a/app/Notifications/TicketReceived.php b/app/Notifications/TicketReceived.php index 138da2bb..bba9b16d 100644 --- a/app/Notifications/TicketReceived.php +++ b/app/Notifications/TicketReceived.php @@ -56,12 +56,14 @@ class TicketReceived extends Notification implements ShouldQueue if($notifiable instanceof HelpTicket){ return (new MailMessage) ->line('The introduction to the notification.') + ->line($this->ticket->text) ->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') + ->line($this->ticket->text) ->action('Notification Action', route('ticket.replay',['id'=>$this->ticket->id])) ->line('Thank you for using our application!');