Dashboard

Nuevo Item
@php $stats = $stats ?? []; $recentItems = $recentItems ?? collect(); $favoriteItems = $favoriteItems ?? collect(); $userGroups = $userGroups ?? ['owned' => collect(), 'member' => collect()]; $recentShares = $recentShares ?? ['with_me' => collect(), 'by_me' => collect()]; @endphp
Total Items

{{ $stats['total_items'] ?? 0 }}

{{ $stats['own_items'] ?? 0 }} propios
Favoritos

{{ $stats['favorite_items'] ?? 0 }}

Items marcados
Compartidos

{{ ($stats['shared_with_me'] ?? 0) + ($stats['shared_by_me'] ?? 0) }}

{{ $stats['shared_with_me'] ?? 0 }} recibidos, {{ $stats['shared_by_me'] ?? 0 }} enviados
Con TOTP

{{ $stats['items_with_totp'] ?? 0 }}

2FA habilitado
@if($userGroups['owned']->count() > 0 || $userGroups['member']->count() > 0)
Mis Grupos
Ver todos
@if($userGroups['owned']->count() > 0)
Que Administro
@foreach($userGroups['owned'] as $group)
{{ $group->name }} {{ $group->active_members_count }} miembros
Owner
@endforeach
@endif @if($userGroups['member']->count() > 0)
Donde soy Miembro
@foreach($userGroups['member'] as $group)
{{ $group->name }} {{ $group->active_members_count }} miembros
@endforeach
@endif
@endif
Organización
Carpetas {{ $stats['total_folders'] ?? 0 }}
Grupos (Owner) {{ $stats['owned_groups'] ?? 0 }}
Grupos (Miembro) {{ $stats['member_groups'] ?? 0 }}