@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'] ?? '-' }}
@foreach (($result['top_candidates'] ?? []) as $index => $candidate) @endforeach
# Skor Yerel Saat
{{ $index + 1 }} {{ $candidate['score_display'] ?? $candidate['score'] ?? '-' }} {{ $candidate['time_local'] ?? '-' }}
@endif
@endsection @push('scripts') @endpush