@extends('layouts.app') @section('title', 'Detalle de Solicitud - ' . $solicitud->codigo_seguimiento) @section('content')
{{ $gestion->descripcion_gestion }}
@if($gestion->uri_archivos_adjuntos && file_exists($gestion->uri_archivos_adjuntos)) @php $archivosGestion = []; if (is_dir($gestion->uri_archivos_adjuntos)) { $files = scandir($gestion->uri_archivos_adjuntos); foreach ($files as $file) { if ($file !== '.' && $file !== '..' && is_file($gestion->uri_archivos_adjuntos . '/' . $file)) { $archivosGestion[] = $file; } } } @endphp @if(count($archivosGestion) > 0)