@extends('layouts.master') @section('title', 'Student List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')
@yield('title')


@foreach ($students as $i => $person) @endforeach
No. Student ID Name E-mail Program School Manage
{{ ++$i }} {{ $person->student_code }} {{ $person->student_firstname }} {{ $person->student_lastname }} {{ $person->student_email }} {{ $person->program_shortname }} {{ $person->school_shortname }}
@include('layouts.footer') @endsection