@extends('layouts.app') @section('title', 'Raporlama & Loglar') @section('content')
Sistem logları ve raporlar paneli
Toplam Log
{{ number_format($totalActivityLogs) }}
Bugün
{{ number_format($todayActivityLogs) }}
Bu Hafta
{{ number_format($thisWeekActivityLogs) }}
Bu Ay
{{ number_format($thisMonthActivityLogs) }}
Toplam Rapor
{{ number_format($totalReports) }}
Tamamlanan
{{ number_format($completedReports) }}
Başarısız
{{ number_format($failedReports) }}
İşleniyor
{{ number_format($processingReports) }}
Toplam Boyut
@if($totalReportSize > 0) @if($totalReportSize >= 1073741824) {{ number_format($totalReportSize / 1073741824, 2) }} GB @elseif($totalReportSize >= 1048576) {{ number_format($totalReportSize / 1048576, 2) }} MB @else {{ number_format($totalReportSize / 1024, 2) }} KB @endif @else - @endif
{{ number_format($action->total) }}
{{ ucfirst($action->action) }}
| Kullanıcı | Toplam Aktivite |
|---|---|
| {{ $activity->user->name ?? 'Bilinmeyen' }} | {{ number_format($activity->total) }} |
| Kullanıcı | Aksiyon | Açıklama | IP Adresi | Tarih |
|---|---|---|---|---|
| {{ $log->user->name ?? 'Sistem' }} | {{ $log->action_label }} | {{ Str::limit($log->description ?? '-', 50) }} | {{ $log->ip_address ?? '-' }} | {{ $log->created_at->format('d.m.Y H:i') }} |
| Rapor Adı | Tip | Durum | Oluşturan | Boyut | Tarih |
|---|---|---|---|---|---|
| {{ $report->name }} | {{ ucfirst($report->type) }} | {{ $report->status_label }} | {{ $report->creator->name ?? '-' }} | {{ $report->file_size_human }} | {{ $report->created_at->format('d.m.Y H:i') }} |
| Rapor Adı | Tip | Zamanlama | Son Çalışma | Sonraki Çalışma |
|---|---|---|---|---|
| {{ $scheduled->name }} | {{ ucfirst($scheduled->type) }} | {{ ucfirst($scheduled->schedule_type) }} - {{ $scheduled->schedule_time }} | {{ $scheduled->last_run_at ? $scheduled->last_run_at->format('d.m.Y H:i') : '-' }} | {{ $scheduled->next_run_at ? $scheduled->next_run_at->format('d.m.Y H:i') : '-' }} |