ctrlpanel/themes/default/views/mail/ticket/admin/reply.blade.php

26 lines
604 B
PHP
Raw Normal View History

2022-08-01 16:52:16 +00:00
@component('mail::message')
Ticket #{{$ticket->ticket_id}} has had a new reply posted by **{{$user->name}}**
### Details
Client: {{$user->name}} <br>
Subject: {{$ticket->title}} <br>
Category: {{ $ticket->ticketcategory->name }} <br>
Priority: {{ $ticket->priority }} <br>
Status: {{ $ticket->status }} <br>
___
```
{{ $newmessage }}
```
___
<br>
You can respond to this ticket by simply replying to this email or through the admin area at the url below.
<br>
{{ route('moderator.ticket.show', ['ticket_id' => $ticket->ticket_id]) }}
2022-08-01 16:52:16 +00:00
<br>
{{__('Thanks')}},<br>
{{ config('app.name') }}
@endcomponent