@extends('layouts.app') @section('content')
{{-- HEADER --}}

Portal UTBK Guru

Bank Soal UTBK

Kelola soal ujian yang Anda buat untuk siswa.

{{-- UPLOAD WORD --}} Upload Soal Word
{{-- NOTIFIKASI --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- INFORMASI --}}
{{-- TOTAL SOAL --}}

Total Soal

{{ $soal->count() }}

{{-- SOAL AKTIF --}}

Soal Aktif

{{ $soal->count() }}

{{-- PAKET --}}

Paket UTBK

{{ $paket->count() }}

{{-- DAFTAR SOAL --}}
{{-- HEADER TABLE --}}

Soal Saya

Daftar soal UTBK yang dibuat oleh Anda.

{{-- TOMBOL TAMBAH --}}
{{-- TABEL --}} @if($soal->count())
@foreach($soal as $item) {{-- NO --}} {{-- PAKET --}} {{-- KATEGORI --}} {{-- PERTANYAAN --}} {{-- BOBOT --}} {{-- AKSI --}} @endforeach
No Paket Kategori Pertanyaan Bobot Aksi
{{ $loop->iteration }} @if($item->paket) {{ $item->paket->nama_paket }} @else - @endif {{ $item->kategori }}
{{ Str::limit(strip_tags($item->pertanyaan), 120) }}
{{ $item->bobot ?? 1 }}
{{-- EDIT --}} @if(Route::has('utbk.guru.soal.edit')) @endif {{-- HAPUS --}} @if(Route::has('utbk.guru.soal.delete'))
@csrf @method('DELETE')
@endif
@else {{-- BELUM ADA SOAL --}}

Belum Ada Soal

Anda belum memiliki soal UTBK.

Upload Soal Word
@endif
@endsection