@php $rows = $chakras['rows'] ?? null; $labels = $chakras['labels'] ?? []; $colors = [ 'crown' => '#e8bbe6', 'third_eye' => '#080ee3', 'throat' => '#3f87b3', 'heart' => '#789a49', 'solar' => '#e9d537', 'sacral' => '#e99d1f', 'root' => '#ae2628', ]; $order = ['crown', 'third_eye', 'throat', 'heart', 'solar', 'sacral', 'root']; @endphp
{{ t('chakras', 'Chakras') }}
@if (!$rows)
{{ t('chakra-data-not-found', 'Datos de chakras no encontrados.') }}
@else
{{-- SOL: sabit görsel --}}
Chakras
{{-- SAĞ: eğik basit barlar (isim yok, sola uzar) --}}
@foreach ($order as $key) @php $r = $rows[$key] ?? null; if (!$r) { continue; } $pct = (int) ($r['pct'] ?? 0); $cnt = (int) ($r['count'] ?? 0); $fill = $colors[$key] ?? '#479483'; @endphp @php $lab = $labels[$key] ?? $key; // isim buradan gelecek @endphp
{{--
{{ $lab }}
--}}
{{ $cnt }}
@endforeach
@endif