mailwolt/resources/views/livewire/ui/mail/bounce-card.blade.php

21 lines
964 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>