@extends('layouts.instructor') @section('title', 'My Students') @section('content') {{-- TOP BAR --}} {{-- PAGE TITLE --}} {{-- STUDENTS TABLE --}}

Students list

@if($students->isNotEmpty())
@foreach($students as $student) @endforeach
Student Name Email Courses Enrolled Joined Actions
{{ $student['name'] }}
{{ $student['email'] }} {{ $student['courses_enrolled'] }}
@else

Belum ada siswa

Buat kursus pertama Anda untuk mulai menerima siswa.

@endif
@endsection