@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