{{ $ticket->subject }}

Ticket generado el {{ $ticket->date }}

@if($ticket->status != "Closed") Resolver @endif

Ticket Nro. {{$ticket->ticketid}}

    @foreach ($ticket->replies->reply as $replies)
  • @if($replies->requestor_type == "Operator")

    {{$replies->requestor_name}}

    {!! nl2br(e($replies->message)) !!}

    @if (count($replies->attachments) > 0 && !empty($replies->attachments)) @foreach ($replies->attachments as $attachment) @if (in_array($attachment->filename->mime, $desiredMimeTypes)) {{ $attachment->filename->filename }} @else @endif @endforeach @endif
    {{$replies->date}}
    @else

    {{$replies->requestor_name}}

    {!! nl2br(e($replies->message)) !!}

    @if (count($replies->attachments) > 0 && !empty($replies->attachments)) @foreach ($replies->attachments as $attachment) @if (in_array($attachment->filename->mime, $desiredMimeTypes)) {{ $attachment->filename->filename }} @else @endif @endforeach @endif
    {{$replies->date}}
    @endif
  • @endforeach
@csrf

SVG, PNG, JPG or GIF (MAX. 800x400px).

Timeline

    @foreach($ticket->replies->reply as $key => $reply)
  • @if(!$loop->last) @endif
    @if($key === 0) @elseif($reply->requestor_type == "Operator") @else @endif
    @if($key === 0)

    Abierto por {{ $reply->name }}

    @else

    Respuesta por {{ $reply->name }}

    @endif
  • @endforeach
@if($ticket->status != "Closed") Resolver @endif