RPD
@php
$todayUsage = \Plugins\NotepadPlusPlus\Models\GeminiUsageLog::where('usage_date', date('Y-m-d'))->first();
$count = $todayUsage->request_count ?? 0;
$limit = 1500;
$percent = ($count / $limit) * 100;
@endphp
{{ $count }} / {{ $limit }}
TOKENS
{{ number_format($todayUsage->token_count ?? 0, 0, ',', '.') }}