@foreach($item_leave->pertanyaans as $pertanyaan) @php $data=$pertanyaan->institusi($tahun->id)->wherePivot('institusi_id',$institusi->id)->first(); $jawaban=null; $files=null; if(empty($data)||is_null($data)){ $empty=true; }else{ $empty=false; $data=$data->pivot; if(!is_null($data->pilihan_jawaban_id)){ $jawaban=\App\Models\PilihanJawaban::find($data->pilihan_jawaban_id); } $files=\App\Models\UploadFile::where('institusi_id',$institusi->id) ->where('pertanyaan_id',$pertanyaan->id)->where('tahun_id',$tahun->id)->get(); } @endphp
{{$pertanyaan->urutan}}. {{$pertanyaan->isi}}
    @if(!$empty) @if($pertanyaan->jenis_pertanyaan_id===2 || $pertanyaan->jenis_pertanyaan_id===4) @if(!is_null($jawaban))
  • Jawaban Plihan Ganda : {{$jawaban->isi}}
  • @endif @endif @if( !is_null($data->jawaban))
  • {!! $data->jawaban !!}
  • @endif @if( !is_null($files) && $files->count()>0 )
  • File :
    @foreach($files as $item_file) {!! $item_file->nama !!} @endforeach
  • @endif @role('responden') Ubah Kuesioner @endrole @endif
@endforeach