@extends('android/teacher/home') @section('content')

Android 2023

Dosen Pengajar Oleh

{{ Auth::user()->name }}

Total mahasiswa yang mengikuti kelas

-

Task

@foreach ( $task AS $index => $isi ) @endforeach
# Info
{{ $index + 1 }} {{ $isi->task_name }}
{{ $isi->caption }}
@if ( $isi->tipe == "material" ) @endif

Enroll

@foreach ( $enrollment AS $index => $isi ) @endforeach
# Nama
Klik nama untuk mendetail
Validation Skor Status Tanggal Mulai Progress
{{ $index + 1 }} {{ $isi->user->name }} {{ $isi->total_request.'/'.$isi->total_validate }} {{ number_format($isi->NA, 2) }} {{ $isi->status }} {{ $isi->created_at }}
{{ number_format($isi->progress, 2) }}%
@endsection