@extends('template') @section('content')
Ticket Suporte @if(routeAcess('admin.tickets.create')) Abrir Novo Chamado @endif
Filtros
@foreach($tickets as $ticket) @endforeach
Cliente Assunto Atendente Aberto em Status
{{$ticket->cliente}} {{$ticket->assunto}} @if(routeAcess('admin.tickets.atribuir.chamado')) @if($ticket->status=='Aberto') {!! Form::select("atendente", $operadores, $ticket->operador_id, ["class"=>"form-control", "onchange"=>"atribuirChamado(this.value, '$ticket->id')",'id'=>'atendente'.$ticket->id]) !!} {!! Form::hidden('operador', $ticket->operador_id,['id'=>'operador'.$ticket->id]) !!} @else {{ $ticket->atendente }} @endif @else {{ $ticket->atendente }} @endif {{ $ticket->created_at }} @if(strtolower($ticket->status) != 'fechado') @if($ticket->atendimento == 'ok') @if($ticket->alerta == 'Envio Aviso Alerta') @else @endif @else @endif @else @endif {{$ticket->status}} Detalhes
{!! $paginacao !!}
@stop() @section('js-admin-tickets') @stop()