21 lines
964 B
PHP
21 lines
964 B
PHP
<div wire:poll.30s="refresh" class="glass-card p-4 rounded-2xl border border-white/10 bg-white/5">
|
||
<div class="flex items-center justify-between mb-3">
|
||
<div class="inline-flex items-center gap-2 bg-white/5 border border-white/10 px-2.5 py-1 rounded-full">
|
||
<i class="ph ph-envelope-x text-white/70 text-[13px]"></i>
|
||
<span class="text-[11px] uppercase text-white/70">Bounces / Zustellung</span>
|
||
</div>
|
||
<div class="text-xl font-semibold">{{ $bounces24h }}</div>
|
||
</div>
|
||
<div class="text-sm text-white/70">Häufigste SMTP-Codes:</div>
|
||
<ul class="mt-2 space-y-1 text-sm">
|
||
@forelse($topCodes as $c)
|
||
<li class="flex justify-between">
|
||
<span class="text-white/80">{{ $c['code'] }}</span>
|
||
<span class="text-white/60">{{ $c['count'] }}</span>
|
||
</li>
|
||
@empty
|
||
<li class="text-white/50">–</li>
|
||
@endforelse
|
||
</ul>
|
||
</div>
|