@extends('front.layout') @section('title','Lista de alumnos') @section('sub-title','Alumnos') @section('top-button') Registrar Alumno @endsection @section('content')
@foreach($data as $student) @endforeach
Id MatrĂ­cula Alumno Cursando Tipo Estatus
{{$student->id}} {{$student->enrollment}} {{$student->user->last_name}} {{$student->user->name}} {{ $student->is_bis ? "BIS" : ($student->quarter ? "Cuatrimestral":"Semestral") }} {{$student->semester}} {{ $student->is_bis ? "ModĂșlo" : ($student->quarter ? "Cuatrimestre":"Semestre") }} {{$student->register_status}} Editar
@endsection @push('css') @endpush @push('js') @endpush