@extends('App') @section('content')

TRAMITE ACADEMICO NRO: {{ $procedure->id }}


Creado por: {{ $procedure->return_name_creator() }}
Fecha de solicitud: {{ date('d/m/Y', strtotime($procedure->date_application)) }}
Ciudad: {{ $procedure->city }}
Número de contacto: {{ $procedure->cellphone_applicant }}
Tipo de tramite: {{ $procedure->return_name_type_procedure() }}
Estado: {{ $procedure->return_is_finish() }}
Nombre solicitante: {{ $procedure->name_applicant }}
Ciudad: {{ $procedure->ci_applicant }}
Nombre del programa: {{ $procedure->name_program }}
Fecha de inicio del programa: {{ date('d/m/Y', strtotime($procedure->date_start_program)) }}
Fecha del fin del programa: {{ date('d/m/Y', strtotime($procedure->date_end_program)) }}
Descripción del trámite:
{!! nl2br(trim($procedure->description)) !!}


@if($list_fileprocedures->count() > 0)

LISTA DE ARCHIVOS SUBIDOS

@foreach ($list_fileprocedures as $element)
@endforeach @else

No se subieron archivos

@endif


OPCIONES


@if($procedure->finish == false)
@csrf
@if(auth()->user()->get_type_user() == 'Super administrador' || auth()->user()->get_type_user() == 'Coordinador')
@csrf
@endif
@endif
@if(auth()->user()->get_type_user() == 'Super administrador' || auth()->user()->get_type_user() == 'Coordinador')
@csrf
@endif


@if(auth()->user()->get_type_user() == 'Super administrador' || auth()->user()->get_type_user() == 'Coordinador')

LISTA DE TRAMITADORES ASIGNADOS


@foreach ($list_workers as $element)
{{ $element->get_name() }}

@endforeach
@csrf


@endif

ACTIVIDADES DE SEGUIMIENTO DEL TRAMITE ACADÉMICO


Fecha actividad
Creado por
Actividad realizada
Descripción
Archivos subidos
@foreach ($list_activities as $element)
{{ date('d/m/Y', strtotime($element->date_creation)) }}
{{ $element->return_name_creator() }}
{{ $element->activity }}
{{ $element->description }}
@if($element->have_files())
@csrf
@else No hay archivos @endif
@endforeach @endsection