Warning: Undefined variable $comment in /home/doohitfrov/simon/resources/views/vendor/ticketit/emails/comment.blade.php on line 1
Deprecated: unserialize(): Passing null to parameter #1 ($data) of type string is deprecated in /home/doohitfrov/simon/resources/views/vendor/ticketit/emails/comment.blade.php on line 1
Warning: Undefined variable $ticket in /home/doohitfrov/simon/resources/views/vendor/ticketit/emails/comment.blade.php on line 2
Deprecated: unserialize(): Passing null to parameter #1 ($data) of type string is deprecated in /home/doohitfrov/simon/resources/views/vendor/ticketit/emails/comment.blade.php on line 2
@extends($email)
@section('subject')
{{ trans('ticketit::email/globals.comment') }}
@stop
@section('link')
{{ trans('ticketit::email/globals.view-ticket') }}
@stop
@section('content')
{!! trans('ticketit::email/comment.data', [
'name' => $comment->user->name,
'subject' => $ticket->subject,
'status' => $ticket->status->name,
'category' => $ticket->category->name,
'comment' => $comment->getShortContent()
]) !!}
@stop