@include('livewire.issste.altas.detalles-modal')
@if (session()->has('message'))
{!! html_entity_decode(session()->get('message')) !!}
@endif
Año |
Paquete |
Status |
Fecha Envío |
Cantidad Empleados |
|
@foreach ($altas as $alta)
@php
$status_paquete = "ENVIADO";
if (is_null($alta->fecha_enviado))
{
$status_paquete = "NO ENVIADO";
}
else $fecha_enviado = $alta->fecha_enviado;
@endphp
{{ $alta->ano }} |
{{ $alta->id }} |
{{ $status_paquete }} |
{{ is_null($alta->fecha_enviado) ? "N/E" : date('d/m/Y', strtotime($fecha_enviado)) }} |
{{ $alta->altas_count }} |
|
@endforeach