@php
$vs = [
'bp_systolic' => ['label' => 'الضغط الانقباضي', 'icon' => 'ti-arrow-up-bar', 'unit' => 'mmHg'],
'bp_diastolic' => ['label' => 'الضغط الانبساطي', 'icon' => 'ti-arrow-down-bar', 'unit' => 'mmHg'],
'heart_rate' => ['label' => 'النبض', 'icon' => 'ti-heartbeat', 'unit' => 'bpm'],
'temperature' => ['label' => 'الحرارة', 'icon' => 'ti-temperature', 'unit' => '°C'],
'weight' => ['label' => 'الوزن', 'icon' => 'ti-weight', 'unit' => 'كجم'],
'height' => ['label' => 'الطول', 'icon' => 'ti-ruler', 'unit' => 'سم'],
'o2' => ['label' => 'الأكسجين', 'icon' => 'ti-lungs', 'unit' => '%'],
'rr' => ['label' => 'التنفس', 'icon' => 'ti-wind', 'unit' => 'rpm'],
];
@endphp
@foreach($vs as $k => $meta)
@endforeach