@extends('layouts.app') @section('title', 'Konfigurasi Bobot Nilai - SIAKAD') @section('page-title', 'Konfigurasi Bobot Nilai') @section('content')
Tambah Konfigurasi Baru
@csrf
Pilih mata kuliah untuk konfigurasi spesifik, atau kosongkan untuk umum @error('matakuliah_id')
{{ $message }}
@enderror
@error('tugas')
{{ $message }}
@enderror
@error('uts')
{{ $message }}
@enderror
@error('uas')
{{ $message }}
@enderror
@error('presensi')
{{ $message }}
@enderror
Total: 100%
Daftar Konfigurasi Bobot
Kelola berbagai konfigurasi bobot penilaian
@forelse($bobotList as $bobot) @empty @endforelse
Mata Kuliah Tugas UTS UAS Presensi Status Aksi
{{ $bobot->matakuliah->nama ?? 'UMUM' }} @if($bobot->matakuliah)
{{ $bobot->matakuliah->kode }} @else
Konfigurasi umum (fallback) @endif
{{ $bobot->tugas }}% {{ $bobot->uts }}% {{ $bobot->uas }}% {{ $bobot->presensi }}% @if($bobot->is_default) Default @else Inactive @endif @if(!$bobot->is_default)
@csrf @method('DELETE')
@endif
Belum ada konfigurasi bobot
@endsection @push('styles') @endpush @push('scripts') @endpush