{{-- Suche + Aktion --}}

Mailboxen

@if($domains->count())
@foreach($domains as $domain)
{{-- Domain-Kopf --}}
{{-- Badges: auf md niemals umbrechen --}}
{{ $domain->domain }}
{{-- --}} {{-- {{ ($domain->is_active ?? true) ? 'aktiv' : 'inaktiv' }}--}} {{-- --}} {{ $domain->mail_users_count }} Postfächer
{{-- Postfächer --}} {{--
--}} {{--
--}} {{-- @forelse($domain->prepared_mailboxes as $u)--}} {{--
--}} {{--
--}} {{--
--}} {{-- {{ $u['localpart'] !== '' ? ($u['localpart'].'@'.$domain->domain) : '—' }}--}} {{--
--}} {{--
--}} {{-- --}} {{-- {{ $u['is_effective_active'] ? 'aktiv' : 'inaktiv' }}--}} {{-- --}} {{-- @if(!$u['is_effective_active'] && !empty($u['inactive_reason']))--}} {{-- --}} {{-- {{ $u['inactive_reason'] }}--}} {{-- --}} {{-- @endif--}} {{-- --}} {{-- Max {{ $u['quota_mb'] }} MiB--}} {{-- --}} {{-- --}} {{-- Verbraucht: {{ $u['used_mb'] }} MiB ({{ $u['usage_percent'] }} %)--}} {{-- --}} {{-- --}} {{-- {{ $u['message_count'] }} E-Mails--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- Aktionen--}} {{--
--}} {{-- Bearbeiten--}} {{-- --}} {{-- Bearbeiten--}} {{-- --}} {{-- Löschen--}} {{-- --}} {{-- Löschen--}} {{-- --}} {{--
--}} {{--
--}} {{-- @empty--}} {{--
Keine Postfächer
--}} {{-- @endforelse--}} {{--
--}} {{--
--}} {{-- Postfächer (responsive: Cards < md, Table ≥ md) --}}
{{-- MOBILE: Card-View --}}
@forelse($domain->prepared_mailboxes as $u)
{{ $u['localpart'] ? ($u['localpart'].'@'.$domain->domain) : '—' }}
{{ $u['is_effective_active'] ? 'aktiv' : 'inaktiv' }} {{-- Optional: Grund anzeigen --}} @if(!$u['is_effective_active'] && !empty($u['inactive_reason'])) {{ $u['inactive_reason'] }} @endif {{ $u['quota_mb'] }} MiB Verbraucht: {{ $u['used_mb'] }} MiB ({{ $u['usage_percent'] }} %) {{ $u['message_count'] }} E-Mails
{{-- Progress --}}
@empty
Keine Postfächer
@endforelse
{{-- DESKTOP: Table-View --}} {{-- --}}
@endforeach
@else
Noch keine Mailboxen vorhanden.
@endif