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

Python Student Learning Result

@if (Session::has('message'))
{{ Session::get('message') }}
@endif
Dosen Pengajar Oleh

{{ $dosen->name }}

Total mahasiswa yang mengikuti kelas

{{ $mhs }} Mahasiswa

@foreach ( $allData AS $index => $isi ) @php $rowspan = count( $isi['materi'] ) + 1; @endphp @foreach ( $isi['materi'] AS $materi ) @endforeach @endforeach
Topik Percobaan Terkumpul Status Action
Nama Topik
{{ $isi['topik']->nama }}
{{ $materi['percobaan']->nama_percobaan }} @php if ( $materi['total'] > 0 ) { echo $materi['total'].' mhs'; } else { echo '-'; } @endphp @php $label = ""; if ( count( $materi['validation'] ) == $mhs ) { $label = ''; } else if ( count( $materi['validation'] ) == 0 ) { $label = ''; } else if ( count( $materi['validation'] ) != $mhs ) { $label = ''; } // echo count( $materi['validation'] ); echo $label; @endphp Detail
@endsection