@extends('layouts.app') @section('title', 'Detail Survei') @section('content') Kembali
{{ $survey->description }}
No. |
Tahun |
NIK |
Nama |
Jenis Kelamin |
Tempat Lahir |
Usia |
@foreach ($survey->questionSurveys as $_question)
{{ $_question->name }} |
@endforeach
---|---|---|---|---|---|---|---|
{{ $no++ }} | {{ $survey->years }} | {{-- @php $user_detail = $question->questionAnswers->first(); @endphp --}}{{ $_answers->users->nik }} | {{ $_answers->users->name }} | {{ $_answers->users->gender }} | {{ $_answers->users->place_of_birth }} | {{ $_answers->users->date_of_birth }} | @foreach ($survey->questionSurveys as $_question){{ $_question->id == $_answers->question_id ? $_answers->answer : 'Kosong' }} | @endforeach
{{ ($questionSurveys->currentPage()-1) * $questionSurveys->perPage() + $loop->index + 1 }} |
{{ $question->name }} |
{{ $question->type }}
@if ($question->questionDetails && $question->type == 'Skala')
|
@forelse ($question->questionAnswers as $row)
{{ $row->answer }} |
@empty
Jawaban Kosong |
@endforelse
|||
Survey Kosong |