@extends('layout') @section('body')
@include('partials.student-sidebar')
Portal Mahasiswa

Halo, {{ $student->name }}

{{ $student->level }} {{ $student->study_program }} · {{ $student->university }}

Website Dosen ↗
@if(session('ok'))
{{ session('ok') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif @foreach($announcements as $a)
{{ $a->title }}
{{ $a->body }}
@endforeach
Penelitian

{{ $student->research_title }}

Progress {{ $supervision?->progress_percent ?? 0 }}%

Tahap: {{ $student->research_stage ?: '-' }}

Target lulus: {{ $student->target_graduation?->format('d M Y') ?: '-' }}

Next action:
{{ $supervision?->next_action ?: 'Belum ditetapkan' }}

Menunggu: {{ $supervision?->waiting_for ?: '-' }}

Revisi Terbaru

@forelse($revisions->take(5) as $rv)
{{ $rv->title }}
{{ $rv->acknowledged_at ? 'Sudah dikonfirmasi baca' : ($rv->opened_at ? 'Sudah dibuka' : 'Belum dibuka') }} · {{ $rv->items->where('is_completed',true)->count() }}/{{ $rv->items->count() }} poin selesai
@empty

Belum ada catatan revisi.

@endforelse

Ajukan Bimbingan

Tidak perlu mengirim file ke server. Gunakan link Google Drive, OneDrive, atau Dropbox yang sudah diberi akses kepada dosen.

@csrf

Riwayat Bimbingan

@forelse($sessions as $x)
{{ $x->created_at->format('d M Y H:i') }}{{ $x->status }}

{{ \Illuminate\Support\Str::limit($x->work_done,180) }}

@if($x->lecturer_feedback)
Arahan dosen
{{ $x->lecturer_feedback }}
@endif
@empty

Belum ada riwayat bimbingan.

@endforelse

Diari Penelitian

@csrf

@foreach($diaries as $d)
{{ $d->entry_date->format('d M') }} · {{ $d->title }}
{{ \Illuminate\Support\Str::limit($d->progress,120) }}
@endforeach

Bank Referensi

@csrf
@foreach($references as $ref)@endforeach
ReferensiTahunLink
{{ $ref->title }}
{{ $ref->authors }}
{{ $ref->year }}@if($ref->url)Buka ↗@endif
@endsection