@extends('layouts/user_type/auth') @section('content') {{-- Ringkasan Sentimen --}}
@foreach (['positif' => 'bg-success', 'netral' => 'bg-warning', 'negatif' => 'bg-danger'] as $sent => $badge)

Total {{ ucfirst($sent) }}

{{ $counts['all'][$sent] }}

@endforeach
{{-- Charts Section --}}
Perbandingan Sentimen E-Wallet
Tren Sentimen E-Wallet
{{-- Pie + Table --}}
Distribusi Persentase Sentimen
Perbandingan Sentimen Antar Brand
@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 @endforeach
E-Wallet Positif Netral Negatif Net Score
{{ $label }} {{ $d['positif'] }} {{ $d['netral'] }} {{ $d['negatif'] }} {{ number_format($net, 1) }}%
{{-- WordCloud Section --}}
@foreach (['positif', 'netral', 'negatif'] as $s)
{{ ucfirst($s) }}
@endforeach
@endsection @push('scripts') @endpush