@php $phase = $moon_phase ?? null; $hasPhase = $phase && is_array($phase) && !empty($phase['key']); @endphp
{{ t('moon-phase', 'Fase Lunar (Momento Natal)') }}
@if (!$hasPhase)
{{ t('moon-phase-data-not-found', 'Datos de fase lunar no encontrados.') }}
@else
@if ($phase['key'] === 'new_moon') @elseif ($phase['key'] === 'waxing_crescent') @elseif ($phase['key'] === 'first_quarter') @elseif ($phase['key'] === 'waxing_gibbous') @elseif ($phase['key'] === 'full_moon') @elseif ($phase['key'] === 'disseminating') @elseif ($phase['key'] === 'last_quarter') @else {{-- Balzamik Ay --}} @endif
{{ $phase['short_label'] ?? $phase['label'] }}
{{ $phase['label'] }}
{{ t('elongation', 'Elongación') }}: {{ $phase['degree_formatted'] ?? ($phase['degree_diff'] ?? '') . '°' }}
@if(!empty($phase['description']))
{{ $phase['description'] }}
@endif
@endif