@php $rows = $qualities['rows'] ?? null; $colors = [ 'mutable' => '#F2B24A', 'cardinal' => '#49535c', 'fixed' => '#4AA3DF', ]; // ✅ NİTELİK SEMBOLLERİ (Unicode Mantığı) // HamburgSymbols fontunda nitelikler (C, F, M) gezegenlerle çakıştığı için // (C=Ceres, F=Zeus, M=Chiron/Vertex) evrensel semboller kullanıyoruz. $qualitySymbols = [ 'mutable' => '≈', // Değişken (Dalgalı - Esnek) 'cardinal' => '⋀', // Öncü (Yukarı Yön - Başlatan) 'fixed' => '□', // Sabit (Kare - Durağan) ]; $order = ['mutable', 'cardinal', 'fixed']; @endphp {{--
Nitelikler
--}} @if (!$rows)
{{ t('no-qualities-data') }}
@else
@foreach ($order as $key) @php $r = $rows[$key] ?? null; if (!$r) { continue; } $fill = $colors[$key] ?? '#479483'; $pct = (int) ($r['pct'] ?? 0); $cnt = (int) ($r['count'] ?? 0); $sym = $qualitySymbols[$key] ?? '?'; @endphp
{{ $cnt }}
{{ $sym }}
@endforeach
@endif