@extends('default.layout') @section('content')


@foreach($tickets as $t)

TCK-{{$t->id}}

Estado: @if($t->estado == 'aberto') ABERTO @elseif($t->estado == 'respondida') RESPONDIDA @else FINALIZADO @endif

Assunto: {{$t->assunto}}

@endforeach
@endsection