@extends('layouts.master') @section('title', 'Student List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub') @yield('title') Import Student Add Student No. Student ID Name E-mail Program School Manage @foreach ($students as $i => $person) {{ ++$i }} {{ $person->student_code }} {{ $person->student_firstname }} {{ $person->student_lastname }} {{ $person->student_email }} {{ $person->program_shortname }} {{ $person->school_shortname }} @endforeach @include('layouts.footer') @endsection