@extends('layouts.user') @section('title', 'Riwayat Rekomendasi') @section('content')
{{-- HEADER --}}

Riwayat Rekomendasi

Riwayat hasil rekomendasi makanan yang pernah Anda lakukan.

{{-- SUCCESS ALERT --}} @if(session('success'))
{{ session('success') }}
@endif {{-- TABLE --}}

Data Riwayat Rekomendasi

@if($laporans->count() > 0) @foreach($laporans as $laporan) @endforeach
No Nama Gejala Aktivitas Nilai SAW Tanggal Aksi
{{ $loop->iteration }} {{ $laporan->nama }} {{ ucwords($laporan->gejala) }} {{ $laporan->aktivitas_harian }} {{ number_format($laporan->nilai_saw, 4) }} {{ $laporan->created_at->format('d M Y') }}
Detail
@csrf @method('DELETE')
@else
Belum ada riwayat rekomendasi
@endif
@endsection