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

Hasil Analisis Sentimen

Data Hasil Analisis

@forelse($hasil as $row) @empty @endforelse
wisata Ulasan Terolah Sentimen Probabilitas
{{ $row->wisata }} {{ $row->ulasan_terolah }} @if($row->sentimen == 'positif') Positif @elseif($row->sentimen == 'negatif') Negatif @else Netral @endif {{ number_format($row->probabilitas, 2) }}
Belum ada hasil analisis sentimen.
Showing {{ $hasil->firstItem() }} to {{ $hasil->lastItem() }} of {{ $hasil->total() }} results
{{-- PREV --}} @if ($hasil->onFirstPage()) @else @endif @php $start = max($hasil->currentPage() - 2, 1); $end = min($hasil->currentPage() + 2, $hasil->lastPage()); @endphp {{-- NUMBER --}} @for ($i = $start; $i <= $end; $i++) @if ($i == $hasil->currentPage()) {{ $i }} @else {{ $i }} @endif @endfor {{-- NEXT --}} @if ($hasil->hasMorePages()) @else @endif
@endsection