@extends('layouts.app') @section('content')

Daftar Tugas

@foreach($tugas as $t) {{-- NILAI --}} {{-- KOMENTAR --}} {{-- STATUS --}} {{-- AKSI --}} @endforeach
Judul Mapel Deadline Waktu Kumpul Nilai Komentar Status Aksi
{{ $t->judul }} {{ $t->mapel->nama_mapel ?? '-' }} {{ \Carbon\Carbon::parse($t->deadline)->format('d M Y H:i') }} @if($t->waktu_kumpul) {{ \Carbon\Carbon::parse($t->waktu_kumpul)->format('d M Y H:i') }} @else - @endif {{ $t->nilai ?? '-' }} {{ $t->komentar ?? '-' }} @if($t->status == 'tepat') Tepat @elseif($t->status == 'telat') Telat @elseif($t->status == 'lewat') Belum Kumpul @else Belum @endif @if($t->file) Download @endif @if(!$t->waktu_kumpul && now()->lt($t->deadline)) Kumpulkan @endif
@endsection