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

Overview

Nama Mahasiswa

{{ $user->name }}

Enroll Pada

{{ date('d M Y H.i', strtotime($enrollment->created_at)) }}

Status Materi

{{ $enrollment->status }}

Autograding

{{ number_format($NA, 2) }}

@if ( $submission->count() > 0 ) @php $info = $submission->first(); @endphp
Pengumpulan Final Submission @php if ( $info->tipe == "zip" ) { $url = asset('android23/final-submission/'. $info->userfile); } else { $url = $info->userfile; } @endphp
{{ $url }}
Konfirmasi Penyelesaian Kelas "Pastikan telah memeriksa pengumpulan mahasiswa" status == "complete" ) { $color = "btn-success disabled"; } ?> Konfirmasi Pengerjaan
@endif
@foreach ( $dt_keseluruhan AS $index => $isi ) @php $jumlah = count( $isi->testcase ); $passed = 0; foreach ( $isi->testcase AS $det ){ if ( $det->status_validate == "passed" ) { $passed++; } } @endphp @foreach ( $isi->testcase AS $det ) @endforeach @endforeach
# Task Name Status Exec Time Duration Percentage Test Case Result
{{ $index + 1 }} {{ $isi->task->task_name }}
Bobot Task : {{ $isi->bobot }}
Skor mahasiswa yang diperoleh : +{{ number_format($isi->nilai, 2) }}
{{ $isi->validator }} {{ $isi->created_at }} {{ $isi->duration }} {{ number_format($passed / $jumlah * 100, 2) }}%
{{ explode(':', $det->case)[0] }} @php $icon = ''; $color = "text-primary"; if ( $det->status_validate == "failed" ) { $icon = ''; $color = "text-danger"; } else { $passed++; } echo ''; @endphp
@endsection