{{-- Extends layout --}} @extends('layouts.default') {{-- Styles Section --}} @section('styles') Ivrfai | Health Check @endsection {{-- Content --}} @section('content') @include('layouts.header_v2')
@if($orders ?? ''!=NULL)
@endif

Survey Completed ReportsSEE ALL

@foreach($orders ?? '' as $employee) @if($employee->survey_status=="COMPLETE") @if($a++ < $survey_completed) @if($employee->severity=="GREEN") @elseif($employee->severity=="RED") @else @endif @endif @endif @endforeach
Name Verification Status Risk Factor
{{ $employee->first_name }} {{ $employee->middle_name }} {{ $employee->last_name }} CompletedSAFE UNSAFE    -

Safe CandidatesSEE ALL

@foreach($orders ?? '' as $employee) @if($employee->severity=="GREEN") @if($b++ < $safe) @if($employee->survey_status=="COMPLETE") @else @endif @if($employee->severity=="GREEN") @elseif($employee->severity=="RED") @else @endif @endif @endif @endforeach
Name Verification Status Risk Factor
{{ $employee->first_name }} {{ $employee->middle_name }} {{ $employee->last_name }}CompletedIncompleteSAFE UNSAFE    -

Unsafe CandidatesSEE ALL

@foreach($orders ?? '' as $employee) @if($employee->severity=="RED") @if($c++ < $survey_postive) @if($employee->survey_status=="COMPLETE") @else @endif @if($employee->severity=="GREEN") @elseif($employee->severity=="RED") @else @endif @endif @endif @endforeach
Name Verification Status Risk Factor
{{ $employee->first_name }} {{ $employee->middle_name }} {{ $employee->last_name }}CompletedIncompleteSAFE UNSAFE    -

COVID Positive CandidatesSEE ALL

@foreach($orders ?? '' as $employee) @if($employee->severity=="RED") @if($d++ < $survey_postive) @if($employee->survey_status=="COMPLETE") @else @endif @if($employee->severity=="GREEN") @elseif($employee->severity=="RED") @else @endif @endif @endif @endforeach
Name Verification Status Risk Factor
{{ $employee->first_name }} {{ $employee->middle_name }} {{ $employee->last_name }}CompletedIncompleteSAFE UNSAFE    -

ReportsSEE ALL

@foreach($orders ?? '' as $employee) @if(\Carbon\Carbon::parse($employee->created_at)->format('d/m/Y') == Carbon\Carbon::today()->format('d/m/Y')) @if($employee->survey_status=="COMPLETE") @else @endif @if($employee->severity=="GREEN") @elseif($employee->severity=="RED") @else @endif @endif @endforeach
Name Verification Status Risk Factor
{{ $employee->first_name }} {{ $employee->middle_name }} {{ $employee->last_name }}CompletedIncompleteSAFE UNSAFE    -
@endsection @section('scripts') @endsection