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