@extends('frontend.main_master') @php $title = 'Doğum Saati Rektifikasyonu - Soru Ekranı'; @endphp @section('title', $title . ' | ' . t('site-title')) @push('styles') @endpush @section('content')
{{ $title }}
{{ ($payload['date'] ?? '-') }} | {{ ($payload['birthplace_city'] ?? '-') . ', ' . ($payload['birthplace_country'] ?? '-') }}
@if (session('error'))
{{ session('error') }}
@endif
@csrf @include('frontend.panel.partials.rectification.wizard-questions', [ 'predispositions' => $predispositions, 'lifeEvents' => $lifeEvents, 'answers' => $answers ?? [], 'lifeEventAnswers' => $lifeEventAnswers ?? [], ])
Panele Dön
@if (!empty($result))
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
@foreach (($result['top_candidates'] ?? []) as $index => $candidate) @endforeach
# Skor Yerel Saat
{{ $index + 1 }} {{ $candidate['score_display'] ?? $candidate['score'] ?? '-' }} {{ $candidate['time_local'] ?? '-' }} @if (!empty($candidate['has_eclipse_anchor'])) Tutulma @endif
@endif
@endsection @push('scripts') @endpush