{{-- ✅ PAIR TAB NAV (A/B ayrı) --}} {{-- ✅ PAIR TAB CONTENT --}}
{{-- Natal A --}}
@foreach ($aPlanetTable as $planet) @endforeach
{{ t('planet') }} {{ t('house') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
@if (!empty($planet['planet_sym'])) {!! $planet['planet_sym'] !!} @endif {{ $planet['name'] }} @php $h = $planet['house'] ?? null; @endphp @if ($h) {{ $h }} {{ t('house') }} @else - @endif {!! $planet['sign'] !!} {{ $planet['sign_name'] ?? '' }} {{ $planet['deg_formatted'] }} @if (!empty($planet['is_retro'])) R @endif {{ $planet['speed'] ?? '-' }}
{{-- Natal B --}}
@foreach ($bPlanetTable as $planet) @endforeach
{{ t('planet') }} {{ t('house') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
@if (!empty($planet['planet_sym'])) {!! $planet['planet_sym'] !!} @endif {{ $planet['name'] }} @php $h = $planet['house'] ?? null; @endphp @if ($h) {{ $h }} {{ t('house-abbr', 'House') }} @else - @endif {!! $planet['sign'] !!} {{ $planet['sign_name'] ?? '' }} {{ $planet['deg_formatted'] }} @if (!empty($planet['is_retro'])) R @endif {{ $planet['speed'] ?? '-' }}
{{-- ✅ ÇOKLU HARİTA: Natal C/D (sadece varsa gösterilir) --}} @foreach ([['c', $cPlanetTable ?? []], ['d', $dPlanetTable ?? []]] as [$__p, $__table]) @if (!empty($__table))
@foreach ($__table as $planet) @endforeach
{{ t('planet') }} {{ t('house') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
@if (!empty($planet['planet_sym'])) {!! $planet['planet_sym'] !!} @endif {{ $planet['name'] }} @php $h = $planet['house'] ?? null; @endphp @if ($h) {{ $h }} {{ t('house') }} @else - @endif {!! $planet['sign'] !!} {{ $planet['sign_name'] ?? '' }} {{ $planet['deg_formatted'] }} @if (!empty($planet['is_retro'])) R @endif {{ $planet['speed'] ?? '-' }}
@endif @endforeach {{-- Houses A --}}
@foreach ($aHouseTable as $house) @endforeach
{{ t('house') }} {{ t('sign') }} {{ t('degree') }}
{{ $house['name'] }} {!! $house['sign'] !!} {{ $house['sign_name'] ?? '' }} {{ $house['deg_formatted'] }}
{{-- Houses B --}}
@foreach ($bHouseTable as $house) @endforeach
{{ t('house') }} {{ t('sign') }} {{ t('degree') }}
{{ $house['name'] }} {!! $house['sign'] !!} {{ $house['sign_name'] ?? '' }} {{ $house['deg_formatted'] }}
{{-- ✅ ÇOKLU HARİTA: Ev Girişleri C/D (sadece varsa gösterilir) --}} @foreach ([['c', $cHouseTable ?? []], ['d', $dHouseTable ?? []]] as [$__p, $__table]) @if (!empty($__table))
@foreach ($__table as $house) @endforeach
{{ t('house') }} {{ t('sign') }} {{ t('degree') }}
{{ $house['name'] }} {!! $house['sign'] !!} {{ $house['sign_name'] ?? '' }} {{ $house['deg_formatted'] }}
@endif @endforeach {{-- Asteroids A --}}
@foreach ($aAstTable as $ast) @endforeach
{{ t('asteroids') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
@if (!empty($ast['planet_sym'])) {!! $ast['planet_sym'] !!} @endif {{ $ast['name'] ?? '-' }} {!! $ast['sign'] ?? '-' !!} {{ $ast['sign_name'] ?? '' }} {{ $ast['deg_formatted'] ?? '-' }} @if (!empty($ast['is_retro'])) R @endif {{ $ast['speed'] ?? '-' }}
{{-- Asteroids B --}}
@foreach ($bAstTable as $ast) @endforeach
{{ t('asteroids') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
@if (!empty($ast['planet_sym'])) {!! $ast['planet_sym'] !!} @endif {{ $ast['name'] ?? '-' }} {!! $ast['sign'] ?? '-' !!} {{ $ast['sign_name'] ?? '' }} {{ $ast['deg_formatted'] ?? '-' }} @if (!empty($ast['is_retro'])) R @endif {{ $ast['speed'] ?? '-' }}
{{-- ✅ ÇOKLU HARİTA: Asteroidler C/D (sadece varsa gösterilir) --}} @foreach ([['c', $cAstTable ?? []], ['d', $dAstTable ?? []]] as [$__p, $__table]) @if (!empty($__table))
@foreach ($__table as $ast) @endforeach
{{ t('asteroids') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
@if (!empty($ast['planet_sym'])) {!! $ast['planet_sym'] !!} @endif {{ $ast['name'] ?? '-' }} {!! $ast['sign'] ?? '-' !!} {{ $ast['sign_name'] ?? '' }} {{ $ast['deg_formatted'] ?? '-' }} @if (!empty($ast['is_retro'])) R @endif {{ $ast['speed'] ?? '-' }}
@endif @endforeach {{-- Transit GLOBAL --}}
@foreach ($todayPlanetTable as $planett) @endforeach
{{ t('planet') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
{!! $planett['planet_sym'] !!} {{ $planett['name'] }} {!! $planett['sign'] !!} {{ $planett['sign_name'] ?? '' }} {{ $planett['deg_formatted'] }} @if (!empty($planett['is_retro'])) R @endif {{ $planett['speed'] }}
{{-- İstersen transit asteroid de gösterebilirsin (opsiyonel) --}} @if (!empty($todayAsteroidTable))
{{ t('transit-asteroids') }}
@foreach ($todayAsteroidTable as $ast) @endforeach
{{ t('asteroids') }} {{ t('sign') }} {{ t('degree') }} {{ t('speed') }}
@if (!empty($ast['planet_sym'])) {!! $ast['planet_sym'] !!} @endif {{ $ast['name'] ?? '-' }} {!! $ast['sign'] ?? '-' !!} {{ $ast['sign_name'] ?? '' }} {{ $ast['deg_formatted'] ?? '-' }} @if (!empty($ast['is_retro'])) R @endif {{ $ast['speed'] ?? '-' }}
@endif