@extends('layout.template.mainTemplate') @section('container') @if (Auth()->user()->roles_id == 1) @include('menu.admin.adminHelper') @endif

Data Pertanyaan Survey

@if (session()->has('delete-success')) @endif @if ($questions->count() > 0)
{{-- Loading --}}
Loading...
Jumlah Pertanyaan: {{ $questions->total() }}
@foreach ($questions as $key) @if (Auth()->user()->roles_id == 1) @else @endif @endforeach
# Pertanyaan Action
{{ $loop->iteration }} {{ $key->question }}
{{ $questions->links('pagination::bootstrap-5') }}
@else

Data belum ditambahkan
@endif
@endsection