@extends('layouts.app') @section('title', 'Tipe Nilai') @section('content')

Tipe Nilai

Kelola tipe penilaian, bobot, dan urutan tampilan.

@if (session('success') || session('error') || $errors->any())
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
Terjadi kesalahan:
@endif
@endif

Daftar Tipe Nilai

Total bobot: {{ $gradeTypes->sum('weight') }}%
@forelse ($gradeTypes as $gt) @empty @endforelse
Kode Nama Bobot Status Aksi
{{ $gt->code }}
@csrf @method('PUT') %
@if ($gt->is_active) Aktif @else Nonaktif @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
Belum ada tipe nilai.

Tambah Tipe Nilai

@csrf
@endsection @push('scripts') @endpush