@extends('layouts.app') @section('title') {{ __('Customer Survey') }} @endsection @section('breadcrumb')

{{ __('Customer Survey') }}

@endsection @section('content')
@can('create_patient') {{ __('Create') }} @endcan @can('create_survey_summary') {{ __('Summary') }} @endcan
@if(isset($from)) @endif
@if(isset($customer_survey)) @php $selected_labs = []; // dd($customer_survey['labs']); foreach ($customer_survey['labs'] as $labs){ // dd($labs->all_labs); foreach($labs->all_labs as $lab){ $selected_labs[] = $lab['id']; } } @endphp @endif
@if(isset($customer_survey)) @php $selected_tests = []; // dd($customer_survey['tests']); foreach ($customer_survey['tests'] as $tests){ // dd($tests->all_tests); foreach($tests->all_tests as $test){ $selected_tests[] = $test['id']; } } @endphp @endif {{-- @php dd($tests_x); @endphp --}}
# {{ __('Survey Date') }} {{ __('Filled By') }} {{ __('Contact Details') }} {{ __('Region') }} {{ __('Laboratory') }} {{ __('Gender') }} {{ __('Client Type') }} {{ __('Created at') }} {{ __('Action') }}
@endsection @section('scripts') @endsection