{{ ($payload['date'] ?? '-') }}
| {{ ($payload['birthplace_city'] ?? '-') . ', ' . ($payload['birthplace_country'] ?? '-') }}
Hesaplanan Sonuçlar
En güçlü saat: {{ $result['best_time_local'] ?? '-' }} |
Güven: {{ $result['confidence'] ?? '-' }} |
Skor farkı: {{ $result['score_gap'] ?? '-' }}
@if (isset($result['gap_ratio']))
| Ayrışma oranı: {{ $result['gap_ratio'] !== null ? round($result['gap_ratio'] * 100, 2) . '%' : '-' }}
@endif
@if (isset($result['lift_ratio']) && $result['lift_ratio'] !== null)
| Öne çıkma oranı: {{ $result['lift_ratio'] }}x
@endif
@if (!empty($result['twin_window']))
| İkiz zaman aralığı — en iyi 2 aday neredeyse eşit
@endif
@if (!empty($result['anchor_recommendation']))
Tutulma ipucu: {{ $result['anchor_recommendation']['time_local'] ?? '-' }} —
{{ $result['anchor_recommendation']['reason'] ?? '' }}
@endif
| # |
Skor |
Yerel Saat |
|
@foreach (($result['top_candidates'] ?? []) as $index => $candidate)
| {{ $index + 1 }} |
{{ $candidate['score_display'] ?? $candidate['score'] ?? '-' }} |
{{ $candidate['time_local'] ?? '-' }} |
@if (!empty($candidate['has_eclipse_anchor']))
Tutulma
@endif
|
@endforeach