2024-07-15 06:24:05 +00:00
|
|
|
{{-- <!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900&display=swap"
|
|
|
|
rel="stylesheet">
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<title>Response Detail</title>
|
|
|
|
<link rel="stylesheet" href="{{ asset('css/index.css') }}">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="form_header roboto-light">
|
|
|
|
<div class="form_header_left">
|
|
|
|
<a href="/forms"><img src="{{ asset('images/google-form.png') }}" class="form_header_icon" height="45px"
|
|
|
|
width="40px" /></a>
|
|
|
|
<h1 class="form_name">{{ $form->title }} - Response Detail</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<div class="response_detail">
|
|
|
|
<h2>Response from {{ $responses->first()->user->name ?? 'Anonymous' }} - {{ $responses->first()->submitted_at }}</h2>
|
|
|
|
@foreach ($responses as $response)
|
2024-07-15 12:06:26 +00:00
|
|
|
@php
|
|
|
|
$question = $questions[$response->question_id];
|
|
|
|
$decodedAnswers = json_decode($response->answers, true);
|
|
|
|
@endphp
|
2024-07-15 06:24:05 +00:00
|
|
|
<div class="question">
|
2024-07-15 12:06:26 +00:00
|
|
|
<h3>{{ $question->question_text }}</h3>
|
|
|
|
@if ($question->type == 'multiple_choice' || $question->type == 'checkbox' || $question->type == 'dropdown')
|
|
|
|
@foreach (json_decode($question->options) as $option)
|
|
|
|
<p>
|
|
|
|
<input type="radio" disabled {{ in_array($option, (array)$decodedAnswers) ? 'checked' : '' }}>
|
|
|
|
{{ $option }}
|
|
|
|
</p>
|
|
|
|
@endforeach
|
|
|
|
@else
|
|
|
|
<p>{{ is_array($decodedAnswers) ? implode(', ', $decodedAnswers) : $decodedAnswers }}</p>
|
|
|
|
@endif
|
2024-07-15 06:24:05 +00:00
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="{{ asset('js/script.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
|
2024-07-15 12:06:26 +00:00
|
|
|
</html> --}}
|
2024-07-15 06:24:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900&display=swap"
|
|
|
|
rel="stylesheet">
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<title>Response Detail</title>
|
|
|
|
<link rel="stylesheet" href="{{ asset('css/index.css') }}">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="form_header roboto-light">
|
|
|
|
<div class="form_header_left">
|
|
|
|
<a href="/forms"><img src="{{ asset('images/google-form.png') }}" class="form_header_icon" height="45px"
|
|
|
|
width="40px" /></a>
|
|
|
|
<h1 class="form_name">{{ $form->title }} - Response Detail</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<div class="response_detail">
|
|
|
|
<h2>Response from {{ $responses->first()->user->name ?? 'Anonymous' }} - {{ $responses->first()->submitted_at }}</h2>
|
2024-07-15 12:06:26 +00:00
|
|
|
|
|
|
|
|
2024-07-15 06:24:05 +00:00
|
|
|
@foreach ($responses as $response)
|
|
|
|
@php
|
2024-07-15 12:06:26 +00:00
|
|
|
$question = $questions[$response->question_id] ?? null;
|
2024-07-15 06:24:05 +00:00
|
|
|
$decodedAnswers = json_decode($response->answers, true);
|
|
|
|
@endphp
|
2024-07-15 12:06:26 +00:00
|
|
|
|
|
|
|
@if ($question)
|
|
|
|
<div class="question">
|
|
|
|
<h3>{{ $question->question_text }}</h3>
|
2024-07-15 18:01:10 +00:00
|
|
|
@if ($question->type == 'dropdown')
|
|
|
|
<select disabled>
|
2024-07-15 12:06:26 +00:00
|
|
|
@foreach (json_decode($question->options) as $option)
|
2024-07-15 18:01:10 +00:00
|
|
|
<option {{ ($option == $decodedAnswers) ? 'selected' : '' }}>
|
2024-07-15 12:06:26 +00:00
|
|
|
{{ $option }}
|
2024-07-15 18:01:10 +00:00
|
|
|
</option>
|
2024-07-15 12:06:26 +00:00
|
|
|
@endforeach
|
2024-07-15 18:01:10 +00:00
|
|
|
</select>
|
|
|
|
@elseif (in_array($question->type, ['multiple_choice', 'checkbox']))
|
|
|
|
@foreach (json_decode($question->options) as $option)
|
|
|
|
<p>
|
|
|
|
<input type="{{ $question->type == 'checkbox' ? 'checkbox' : 'radio' }}" disabled {{ in_array($option, (array)$decodedAnswers) ? 'checked' : '' }}>
|
|
|
|
{{ $option }}
|
|
|
|
</p>
|
|
|
|
@endforeach
|
2024-07-15 12:06:26 +00:00
|
|
|
@else
|
|
|
|
<p>{{ is_array($decodedAnswers) ? implode(', ', $decodedAnswers) : $decodedAnswers }}</p>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
@else
|
|
|
|
<p>Question not found for ID: {{ $response->question_id }}</p>
|
|
|
|
@endif
|
2024-07-15 06:24:05 +00:00
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="{{ asset('js/script.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|
2024-07-15 12:06:26 +00:00
|
|
|
|
2024-07-15 18:01:10 +00:00
|
|
|
|