{!! $index + 1 !!} |
{!! $pertanyaan->urutan !!} |
{!! $pertanyaan->isi !!} |
@foreach($pertanyaan->pilihanJawabans as $pilihanJawaban)
{!! $pilihanJawaban->urutan !!}. {!! $pilihanJawaban->isi !!}
@endforeach
|
@if($pertanyaan->prodeskel_type_id == 3 || $pertanyaan->prodeskel_type_id == 4)
Pilihan Default
@foreach($pertanyaan->pilihanDefaults as $pilihanDefault)
{!! $pilihanDefault->urutan . '. ' . $pilihanDefault->isi !!}
@endforeach
@endif
{{ $pertanyaan->default_jawaban }}
|
{{ $pertanyaan->kategori->nama ?? "-" }} |
{{ $pertanyaan->jenisPertanyaan->nama ?? "-" }} |
{!! $pertanyaan->keterangan !!} |
{!! Form::open(['route' => ['admin.prodeskel.pertanyaan.destroy', $pertanyaan->id], 'method' => 'delete']) !!}
@if($pertanyaan->prodeskel_type_id != 1)
Detail
@endif
Ubah
{!! Form::button('Hapus', ['type' => 'submit', 'class' => 'btn-white btn btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}
|
@empty
@endforelse