{{-- Brand dengan Logo dan Judul --}}
Sentiment Dashboard
Manajemen Informatika
{{-- Login/Logout selalu terlihat, tanpa collapse --}}
@guest
Login
@endguest @auth
Logout
@endauth
Semua
Dana
GoPay
ShopeePay
@foreach (['positif' => 'bg-gradient-success', 'netral' => 'bg-gradient-warning', 'negatif' => 'bg-gradient-danger'] as $sent => $badge)
{{ 'Total ' . ucfirst($sent) }}
{{ $counts['all'][$sent] }}
@endforeach
{{-- ====================== --}} {{-- Section: Charts Row --}} {{-- ====================== --}}
Perbandingan Sentimen E-Wallet
Tren Sentimen E-Wallet
{{-- ====================== --}} {{-- Section: Pie + Table --}} {{-- ====================== --}}
Distribusi Persentase Sentimen
Semua
Dana
GoPay
ShopeePay
Perbandingan Sentimen Antar Brand
E-Wallet
Positif
Netral
Negatif
Net Score
@foreach (['Dana' => 'dana', 'GoPay' => 'gopay', 'ShopeePay' => 'shopeepay'] as $label => $key) @php $d = $counts[$key]; $net = (($d['positif'] - $d['negatif']) / max(1, array_sum($d))) * 100; @endphp
{{ $label }}
{{ $d['positif'] }}
{{ $d['netral'] }}
{{ $d['negatif'] }}
{{ number_format($net, 1) }}%
@endforeach
{{-- ====================== --}} {{-- Section: WordClouds --}} {{-- ====================== --}}
Gabungan
Dana
GoPay
ShopeePay
@foreach (['positif', 'netral', 'negatif'] as $s)
{{ ucfirst($s) }}
@endforeach
{{-- ====================== --}} {{-- SCRIPTS --}} {{-- ====================== --}}