change csv

This commit is contained in:
aarsyah0 2025-04-28 18:16:42 +07:00
parent e2344aa918
commit 8518f670c2
6 changed files with 2259 additions and 1224 deletions

View File

@ -18,9 +18,9 @@
// Hitung data sekali
$base = resource_path('views');
$cDana = getSentimentCounts("{$base}/terlabel.csv");
$cGoPay = getSentimentCounts("{$base}/terlabelgopay.csv");
$cShopee = getSentimentCounts("{$base}/terlabeshopepay.csv");
$cDana = getSentimentCounts("{$base}/danalabel.csv");
$cGoPay = getSentimentCounts("{$base}/gopaylabel.csv");
$cShopee = getSentimentCounts("{$base}/shopeepaylabel.csv");
// Total kartu (opsional)
$totalPositif = $cDana['positif'] + $cGoPay['positif'] + $cShopee['positif'];
@ -36,7 +36,7 @@
<option value="all">Semua</option>
<option value="dana">Dana</option>
<option value="gopay">GoPay</option>
<option value="shopeepay">ShopeePay</option>
<option value="shopee">ShopeePay</option>
</select>
</div>
@ -160,7 +160,7 @@
<option value="all">Semua E-Wallet</option>
<option value="dana">Dana</option>
<option value="gopay">GoPay</option>
<option value="shopeepay">ShopeePay</option>
<option value="shopee">ShopeePay</option>
</select>
</div>
<div class="card-body p-3">
@ -263,9 +263,9 @@
return array_merge(['positif' => 0, 'netral' => 0, 'negatif' => 0], $counts);
}
$base = resource_path('views');
$cDana = getSentimentCounts("{$base}/terlabel.csv");
$cGoPay = getSentimentCounts("{$base}/terlabelgopay.csv");
$cShopee = getSentimentCounts("{$base}/terlabeshopepay.csv");
$cDana = getSentimentCounts("{$base}/danalabel.csv");
$cGoPay = getSentimentCounts("{$base}/gopaylabel.csv");
$cShopee = getSentimentCounts("{$base}/shopeepaylabel.csv");
@endphp
// Data arrays

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
{{-- === Table for Dana === --}}
@php
$pathDana = resource_path('views/terlabel.csv');
$pathDana = resource_path('views/danalabel.csv');
$allRowsDana = file_exists($pathDana) ? array_map('str_getcsv', file($pathDana)) : [];
$headerDana = count($allRowsDana) > 1 ? array_shift($allRowsDana) : [];
$perPageDana = (int) request()->get('per_page_dana', 10);
@ -30,7 +30,7 @@
<div class="col-12 mb-4" id="dana">
<div class="card shadow-sm border-0 rounded-2">
<div class="card-header bg-white border-bottom-0 pb-0">
<h6 class="mb-0">Data Sentimen Dana (terlabel.csv)</h6>
<h6 class="mb-0">Data Sentimen Dana (danalabel.csv)</h6>
</div>
<div class="card-body px-0 pt-2 pb-3">
<div class="table-responsive">
@ -57,7 +57,7 @@
</table>
@else
<p class="text-center text-muted py-4">
File terlabel.csv tidak ditemukan atau kosong.
File danalabel.csv tidak ditemukan atau kosong.
</p>
@endif
</div>
@ -143,7 +143,7 @@
{{-- === Table for GoPay === --}}
@php
$pathGo = resource_path('views/terlabelgopay.csv');
$pathGo = resource_path('views/gopaylabel.csv');
$allRowsGo = file_exists($pathGo) ? array_map('str_getcsv', file($pathGo)) : [];
$headerGo = count($allRowsGo) > 1 ? array_shift($allRowsGo) : [];
$perPageGo = (int) request()->get('per_page_go', 10);
@ -163,7 +163,7 @@
<div class="col-12 mb-4" id="gopay">
<div class="card shadow-sm border-0 rounded-2">
<div class="card-header bg-white border-bottom-0 pb-0">
<h6 class="mb-0">Data Sentimen GoPay (terlabelgopay.csv)</h6>
<h6 class="mb-0">Data Sentimen GoPay (gopaylabel.csv)</h6>
</div>
<div class="card-body px-0 pt-2 pb-3">
<div class="table-responsive">
@ -273,7 +273,7 @@
{{-- === Table for ShopeePay === --}}
@php
$pathShopee = resource_path('views/terlabeshopepay.csv');
$pathShopee = resource_path('views/shopeepaylabel.csv');
$allRowsShopee = file_exists($pathShopee) ? array_map('str_getcsv', file($pathShopee)) : [];
$headerShopee = count($allRowsShopee) > 1 ? array_shift($allRowsShopee) : [];
$perPageShopee = (int) request()->get('per_page_shopee', 10);
@ -293,7 +293,7 @@
<div class="col-12 mb-4" id="shopeepay">
<div class="card shadow-sm border-0 rounded-2">
<div class="card-header bg-white border-bottom-0 pb-0">
<h6 class="mb-0">Data Sentimen ShopeePay (terlabeshopepay.csv)</h6>
<h6 class="mb-0">Data Sentimen ShopeePay (shopepaylabel.csv)</h6>
</div>
<div class="card-body px-0 pt-2 pb-3">
<div class="table-responsive">
@ -320,7 +320,7 @@
</table>
@else
<p class="text-center text-muted py-4">
File terlabeshopepay.csv tidak ditemukan atau kosong.
File shopepaylabel.csv tidak ditemukan atau kosong.
</p>
@endif
</div>

File diff suppressed because it is too large Load Diff