@section('title', __('Tickets'))

Tickets

@if (session()->has('message'))
{{ session('message') }}
@endif
@include('livewire.tickets.modals')
@forelse($registros as $row)
Prioridad === 'Alta') style="cursor: pointer;background: red;" @endif @if ($row->Prioridad === 'Media') style="cursor: pointer;background: yellow;" @endif @if ($row->Prioridad === 'Baja') style="cursor: pointer;background: green;" @endif>
{{ $row->enumeration }}
{{ $row->Fecha_Inicio }}
@if ($row->Imagen) Imagen @endif

Tipo de Soporte:{{ $row->Tipo_Soporte }}

Servicio: {{ $row->Nombre }}

Usuario: {{ $row->Nombres_y_Apellidos_Usuario }}

Tecnico Asignado: {{ $row->Nombres_y_Apellidos_Tecnico }}

Prioridad: {{ $row->Prioridad }}

Estado: {{ $row->Estado }}

@empty

No data Found

@endforelse