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

@yield('title')

--}} @include('layouts.title')
{{--

CCCCCCC

--}}
@yield('title')


@foreach ($students as $i => $person) @endforeach
No. Student ID Name Type Curriculum School Manage
{{ ++$i }} {{ $person->student_code }} {{ $person->student_firstname }} {{ $person->student_lastname }} {{ $person->type_names }} {{ $person->curriculum_shortname }} {{ $person->school_name }} ({{ $person->school_shortname }})
@include('layouts.footer') @endsection