@extends('layouts.master')
@section('title', 'Student list')
@section('style')
@endsection
@section('script')
@endsection
@section('content')
@include('layouts.header')
Student View
{{-- Hello! This is Sandbox
--}}
{{--
| No. |
First Name |
Last Name |
E-mail |
Manage |
@foreach ($userlist as $i => $item)
| {{ ++$i }} |
{{ $item->user_firstname }} |
{{ $item->user_lastname }} |
{{ $item->user_email }} |
|
@endforeach
--}}
@include('layouts.footer')
@endsection