@extends('front.layoutwithout') @section('title', 'Estatus de Alumnos') @section('sub-title') @section('content')
@csrf
@foreach($data['students'] as $key => $student) @endforeach
# Matricula Grupo Nombre Carrera Fecha Teléfono Correo electrónico
{{ $key + 1 }} {{ $student->enrollment }} {{ $student->group }} {{ $student->last_name }} {{ $student->name }} {{ $student->career->code }} {{ $student->status_change_date }} {{ $student->user->phone }} {{ $student->user->email }}

@endsection @push('css') @endpush @push('js') @endpush