@extends('layouts.master')
@section('title') Inicio @endsection
@section('content')
@component('components.breadcrumb')
@slot('li_1') Inicio @endslot
@slot('li_2') Panel Academico @endslot
@slot('title') Estudiantes @endslot
@endcomponent
| # |
Nombre Completo |
DNI |
Correo |
Teléfono |
Fecha de Nacimiento |
Grado |
Acciones |
@foreach($postulantes as $index => $postulante)
| {{ $loop->iteration }} |
{{ $postulante->nombres }} {{ $postulante->apellidos }} |
{{ $postulante->dni }} |
{{ $postulante->email }} |
{{ $postulante->telefono }} |
{{ $postulante->fecha_nacimiento }} |
{{ $postulante->grado }} |
|
@endforeach
@endsection
@section('script')
@endsection