fix: anpassungen lt. Besprechung Frontend/ Powerpoint 10-11-2025

This commit is contained in:
2025-11-10 21:35:52 +01:00
parent 08faf9fb86
commit 64b8ff48da
2 changed files with 133 additions and 121 deletions
@@ -80,9 +80,9 @@ new #[Layout('components.layouts.app'), Title('Transaktionsprüfung')] class ext
{
return [
'all' => 'Alle Prüfaufträge',
Transaction::STATUS_TRUE_POSITIVE => 'Bestätigte Treffer',
Transaction::STATUS_FALSE_POSITIVE => 'Fehlalarme',
Transaction::STATUS_CLEARED => 'Freigegebene Vorgänge',
Transaction::STATUS_TRUE_POSITIVE => 'Kritisches Risiko',
Transaction::STATUS_FALSE_POSITIVE => 'Hohes Risiko',
Transaction::STATUS_CLEARED => 'Geringes Risiko',
];
}
@@ -261,17 +261,17 @@ Transaction::STATUS_CLEARED => [
<p class="mt-1 text-xs text-slate-300">Volumen: {{ $formatAmount($total['amount']) }}</p>
</div>
<div class="rounded-2xl border border-rose-400/40 bg-rose-500/15 p-4 text-center backdrop-blur-sm shadow-lg shadow-rose-900/40">
<p class="text-xs font-medium uppercase tracking-wide text-rose-50">Bestätigte Treffer</p>
<p class="text-xs font-medium uppercase tracking-wide text-rose-50">Kritisches Risiko</p>
<p class="text-2xl font-semibold text-rose-100">{{ $confirmed['count'] }}</p>
<p class="mt-1 text-xs text-rose-100/80">Volumen: {{ $formatAmount($confirmed['amount']) }}</p>
</div>
<div class="rounded-2xl border border-amber-400/40 bg-amber-400/15 p-4 text-center backdrop-blur-sm shadow-lg shadow-amber-900/30">
<p class="text-xs font-medium uppercase tracking-wide text-amber-50">Fehlalarme</p>
<p class="text-xs font-medium uppercase tracking-wide text-amber-50">Hohes Risiko</p>
<p class="text-2xl font-semibold text-amber-100">{{ $falseAlarm['count'] }}</p>
<p class="mt-1 text-xs text-amber-100/80">Volumen: {{ $formatAmount($falseAlarm['amount']) }}</p>
</div>
<div class="rounded-2xl border border-emerald-400/40 bg-emerald-400/15 p-4 text-center backdrop-blur-sm shadow-lg shadow-emerald-900/30">
<p class="text-xs font-medium uppercase tracking-wide text-emerald-50">Freigegeben</p>
<p class="text-xs font-medium uppercase tracking-wide text-emerald-50">Geringes Risiko</p>
<p class="text-2xl font-semibold text-emerald-100">{{ $cleared['count'] }}</p>
<p class="mt-1 text-xs text-emerald-100/80">Volumen: {{ $formatAmount($cleared['amount']) }}</p>
</div>