@extends('template') @section('content')
@if (session('message'))
{{ session('message') }}
@endif
Informações do Ticket
#{{$id}} - {{$ticket->assunto}}
Abertura: {{dateToBRTime($ticket->created_at)}}
Última Atualização: {{dateToBRTime($ticket->updated_at)}}
@if($ticket->status != 'Fechado') @else @if(trim($ticket->rate) == '') Avaliar Atendimento @endif @endif
@if(!isset(Auth::user()->menu)) @endif
@if($ticket->status == 'Fechado')
Esse chamado foi fechado e não pode ser reaberto!
@endif
#{{$ticket->protocolo}} - {{$ticket->assunto}}
@foreach($interacoes as $interacao)
@if($interacao->role=='painel') @else @endif
{{ $interacao->name }}
@if($interacao->role=='painel')Cliente @else Atendente @endif
{{ dateToBRTime($interacao->created_at) }}

{!! nl2br($interacao->interacao) !!}
@if(strlen($interacao->anexo)) @endif
@endforeach
@stop() @section('js-visualizar-chamado') @if(Auth::user()->chat) @endif @stop