@section('result') {{--
 }})
Hello {{ $info->user->first_name }} {{ $info->user->last_name }}
{{-- @if ($info->basic_info->wellness_score >= 6 && $info->basic_info->wellness_score <= 7 )
Great
@elseif($info->basic_info->wellness_score >= 8 && $info->basic_info->wellness_score <= 10)
Excellent
@else
Can Be Improved
@endif --}}
@php
$totalVitals = 12;
$measuredVitals = 0;
if (!empty($info->basic_info->heart_rate)) $measuredVitals++;
if (!empty($info->basic_info->breathing_rate)) $measuredVitals++;
if (!empty($info->basic_info->hrv_sdnn)) $measuredVitals++;
if (!empty($info->basic_info->prq)) $measuredVitals++;
if (!empty($info->basic_info->blood_pressure)) $measuredVitals++;
if (!empty($info->basic_info->oxygen_saturation)) $measuredVitals++;
if (!empty($info->basic_info->hemoglobin)) $measuredVitals++;
if (!empty($info->basic_info->hba1c)) $measuredVitals++;
if (!empty($info->basic_info->stress_level) && $info->basic_info->stress_level != 0) $measuredVitals++;
if (!empty($info->basic_info->recovery_ability) && $info->basic_info->recovery_ability != 0) $measuredVitals++;
if (!empty($info->basic_info->stress_response) && $info->basic_info->stress_response != 0) $measuredVitals++;
if (!empty($info->basic_info->wellness_score)) $measuredVitals++;
@endphp
We've successfully measured {{ $measuredVitals }} out of the {{ $totalVitals }} vital signs,and
@if ($info->basic_info->wellness_score >= 6 && $info->basic_info->wellness_score <= 7 )
you're doing a good job.
@elseif($info->basic_info->wellness_score >= 8 && $info->basic_info->wellness_score <= 10)
you're doing a great job.
@else
Stay persistent and keep pushing forward, there's always room for improvement.
@endif
Remember to keep up with healthy habits like exercise and a balanced diet. MyVitalScan is designed for consistent use, enabling you to monitor your vital signs and trends over time.
With our mobile app, you can conveniently keep track of your screening history, providing an excellent tool for proactively managing your overall health and well-being.