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

@foreach($tickets as $t)

TCK-{{$t->id}}

{{$t->empresa->nome}}

{{\Carbon\Carbon::parse($t->created_at)->format('d/m/Y H:i')}}

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

Assunto: {{$t->assunto}}

@endforeach
@endsection