@extends('common.index') @section('content')

Assigne Technician Manually

@if(session('error'))
@endif @if(session('success'))
@endif
@if($patientDetails) @foreach ($patientDetails as $patient)

{{$patient['test_order']['patient']['name']}} [ {{$patient['test_order']['patient']['patient_code']}}]

@foreach ($patient['test_order']['test_carts'] as $test) @if($test['id']==$patient['cart_id']) @endif @endforeach
{{$test['test_name']}} @if($test['test_status']==0) Pending @elseif($test['test_status']==1) Sample collected @endif
Please select technician from dropdown
@endforeach @else
No Record Found
@endif
@endsection