@extends('admin.layout') @section('title', 'Actividad de Usuarios Registrados') @section('page-title', 'Kayıtlı Kullanıcı Aktivitesi') @push('styles') @endpush @section('content')
Ziyaretçi Analizi
@foreach ([7 => '7 Gün', 30 => '30 Gün', 90 => '90 Gün', 365 => '1 Yıl'] as $days => $label) {{ $label }} @endforeach
Kayıtlı Kullanıcılar (Giriş yapmış, {{ $from->format('d.m.Y') }} – {{ $to->format('d.m.Y') }})
@forelse ($users as $u) @empty @endforelse
Kullanıcı E-posta Kayıt Kaynağı Kullanım Kaynağı Oturum Mobil Desktop Tablet Sayfa Görüntüleme İlk Ziyaret Son Ziyaret
{{ $u->name ?: '—' }} {{ $u->email }} @if (($u->registration_source ?? 'web') === 'mobile') Mobil @else Web @endif @switch($u->usage_source ?? 'none') @case('web_api') Web API @break @case('api') API @break @case('web') Web @break @default Veri Yok @endswitch {{ number_format($u->total_sessions) }} {{ number_format($u->mobile_sessions ?? 0) }} {{ number_format($u->desktop_sessions ?? 0) }} {{ number_format($u->tablet_sessions ?? 0) }} {{ number_format($u->total_page_views) }} {{ $u->first_visit_at ? $u->first_visit_at->format('d.m.Y H:i') : '—' }} {{ $u->last_visit_at ? $u->last_visit_at->format('d.m.Y H:i') : '—' }} Detay
Bu dönemde giriş yapmış kayıtlı kullanıcı aktivitesi yok.
@endsection