Developer Performans Raporu

Rapor Tarihi: {{ now()->format('d.m.Y H:i') }}

Developer Bilgileri

Ad Soyad:
{{ $developer->name }}
Email:
{{ $developer->email }}
Kayıt Tarihi:
{{ $developer->created_at->format('d.m.Y H:i') }}
@if($currentPerformance)

Güncel Performans ({{ $currentPerformance->period_date->format('F Y') }})

Performans Puanı:
{{ number_format($currentPerformance->performance_score, 2) }}/100
Toplam Site:
{{ $currentPerformance->total_sites }} ({{ $currentPerformance->active_sites }} aktif)
Ortalama Mobil Skor:
{{ $currentPerformance->avg_mobile_score ? number_format($currentPerformance->avg_mobile_score, 2) : 'N/A' }}
Ortalama Desktop Skor:
{{ $currentPerformance->avg_desktop_score ? number_format($currentPerformance->avg_desktop_score, 2) : 'N/A' }}
Optimizasyon Başarı Oranı:
{{ $currentPerformance->optimization_success_rate ? number_format($currentPerformance->optimization_success_rate, 2) . '%' : 'N/A' }}
Toplam Optimizasyon:
{{ $currentPerformance->total_optimizations }} ({{ $currentPerformance->completed_optimizations }} tamamlandı, {{ $currentPerformance->failed_optimizations }} başarısız)
Toplam Aktivite:
{{ $currentPerformance->total_activities }}
@if($currentPerformance->last_activity_at)
Son Aktivite:
{{ $currentPerformance->last_activity_at->format('d.m.Y H:i') }}
@endif
@endif @if($target)

Hedefler ({{ $target->target_period->format('F Y') }})

@if($target->target_performance_score)
Hedef Performans Puanı:
{{ number_format($target->target_performance_score, 2) }}
@endif @if($target->target_avg_mobile_score)
Hedef Ortalama Mobil Skor:
{{ number_format($target->target_avg_mobile_score, 2) }}
@endif @if($target->target_avg_desktop_score)
Hedef Ortalama Desktop Skor:
{{ number_format($target->target_avg_desktop_score, 2) }}
@endif
Hedef Durumu:
{{ $target->is_achieved ? '✓ Gerçekleşti' : '✗ Henüz Gerçekleşmedi' }}
@endif @if(!empty($performanceHistory))

Performans Geçmişi

@foreach($performanceHistory as $history) @endforeach
Dönem Performans Puanı Toplam Site Ortalama Mobil Ortalama Desktop Başarı Oranı Aktivite
{{ $history['period_label'] }} {{ number_format($history['performance_score'], 1) }} {{ $history['total_sites'] }} {{ $history['avg_mobile_score'] ? number_format($history['avg_mobile_score'], 1) : 'N/A' }} {{ $history['avg_desktop_score'] ? number_format($history['avg_desktop_score'], 1) : 'N/A' }} {{ $history['optimization_success_rate'] ? number_format($history['optimization_success_rate'], 1) . '%' : 'N/A' }} {{ $history['total_activities'] }}
@endif