@extends('layouts.landing') @section('title', 'History Tes - SMK Negeri 2 Jember') @section('content') {{-- Sembunyikan navbar seperti halaman tes --}}
{{-- Tombol kembali --}} 🏠 Kembali ke Beranda {{-- Header --}}
@if($histories->isEmpty())
📭

Belum Ada Riwayat Tes

Kamu belum pernah mengikuti tes minat bakat.
Yuk mulai sekarang!

🎯 Mulai Tes Sekarang
@else

Riwayat Tes Kamu

Total {{ $histories->total() }} kali tes

@foreach($histories as $index => $tes) @php $top = $tes->hasilSaw->sortBy('peringkat')->first(); @endphp @endforeach
# Tanggal Tes Rekomendasi Jurusan Penyakit Nilai Tertinggi Peringkat 1 Aksi
{{ $histories->firstItem() + $index }} {{ $tes->created_at->format('d M Y') }} {{ $tes->created_at->format('H:i') }} WIB @if($top && $top->jurusan) 🏆 {{ $top->jurusan->nama_jurusan }} @else - @endif {{ $tes->penyakit?->nama_penyakit ?? 'Tidak ada' }} {{ $top ? number_format($top->nilai_preferensi, 4) : '-' }} {{ $top ? '#'.$top->peringkat : '-' }}
@if($histories->hasPages())
{{ $histories->links() }}
@endif @endif
@endsection