@extends('layouts.principal')
@section('contenido')
LISTADO DE EXAMENES POR COLABORADOR
@php
$fecha_actual = date("d-m-Y");
// Primero sumas un día
$sumado = date("d-m-Y",strtotime($fecha_actual."+ 5 days"));
$fechaFinal = date("Y-m-d", strtotime($sumado));
$fechaInicio = date("Y-m-d");
@endphp
N° |
COLABORADOR |
EXAMEN |
AREA |
PUESTO |
ACCIONES |
@endsection