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

Dashboard

Detail Jurnal

@csrf @method('DELETE')

Judul: {{ $journal->title }}

Diunggah: {{ \Carbon\Carbon::parse($journal->created_at)->diffForHumans() }}

Oleh: {{ $journal->user->email }} User Avatar

{{-- CARD: Daftar Kalimat Prediksi --}}
Daftar Kalimat Yang Sudah Diprediksi
@forelse($citationSentences as $sentence) @php $label = match ($sentence->label) { '1' => ['text' => 'Method', 'class' => 'badge bg-primary'], '2' => ['text' => 'Result', 'class' => 'badge bg-success'], default => [ 'text' => 'Background', 'class' => 'badge bg-secondary text-dark', ], }; @endphp @empty @endforelse
Label Kalimat Akurasi
{{ $label['text'] }} {{ $sentence->text }} {{ number_format($sentence->accuracy * 100, 2) }}%
Belum ada kalimat yang dianalisis.
{{ $citationSentences->links() }}
{{-- end row --}}
{{-- end card-body --}}
{{-- end row --}}
{{-- Modal PDF --}} @push('js') @endpush @endsection