@extends("estudiante.layout.layout") @section("styles") @php $titulo = "Pre Matrícula "; $modulo = "Pre Matrícula"; $vista="Mis pre matrículas"; @endphp {{getenv("APP_NAME")}} | {{$titulo }} {{$vista}} @endsection @section("contenido")
@foreach($matriculas as $matricula)
@if($matricula->tipo_estado_id==2)

Matrícula confirmada

@endif @if($matricula->tipo_estado_id==3)

Matrícula denegada

@endif
{{$matricula->tipo_estado->tipo_estado}}
@if($matricula->tipo_estado_id==3) Razón: {{$matricula->justificacion}} @endif
@if($matricula->tipo_estado_id==1)
Sin cita, por favor presentarse al centro educativo
@endif
Pre Matrícula # {{$matricula->id}} {{$matricula->periodo->periodo}}
{{$matricula->estudiante->nombre_completo}} @if($matricula->tipo_estado_id==2) Grupo {{$matricula->grupo->grupo}} @endif @if($matricula->vb==0) Grupo preliminar {{$matricula->grupo->grupo}} @endif
{{date("d-m-Y",strtotime($matricula->fecha))}}
Fecha pre matrícula
@endforeach
@endsection @section("scripts") @endsection