help desk notification ticketreceived fix
This commit is contained in:
parent
8f0806e53f
commit
f97c769766
|
|
@ -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!');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue