@extends('layouts.master')
@section('css')
@endsection
@section('content')
@if (isset($student->photo))
@else
@endif
Full Name
{{$student->nama_lengkap}}
NISN
{{$student->NIS}}
Current School Year
{{$current->meta_value}}
Semester
{{($semester->meta_value == 1)? 'First Term' : 'Second Term'}}
Grade
{{$student->nama}}
Class
{{$student->nama_kelas}}
@php
$no = 0;
@endphp
@foreach ($result as $row)
-
{{$no+1}}
{{$row->kategori}}
{{$row->title}}
{{$row->tgl_upload}}
Task :
{{$row->task}}
Teacher's Comment :
{{$row->comment}}
{{$row->name}}
@php
$no++;
@endphp
@endforeach
@endsection
@section('js')
@endsection