81 lines
3.7 KiB
PHP
81 lines
3.7 KiB
PHP
@extends('layout.master')
|
|
|
|
@section('title', 'Tambah Klasifikasi')
|
|
|
|
@section('content')
|
|
<div class="card border-top-primary shadow mb-4">
|
|
<form action="{{ url('penilaian-alternatif/store') }}" method="POST" id="penilaianForm">
|
|
@csrf
|
|
<div class="card-body pt-3">
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<label for="periode">Periode</label>
|
|
<select class="form-control" id="periode" name="periode">
|
|
@php
|
|
$tahunAkhir = date('Y');
|
|
$tahunAwal = $tahunAkhir - 10;
|
|
@endphp
|
|
@for ($tahun = $tahunAkhir; $tahun >= $tahunAwal; $tahun--)
|
|
@php
|
|
$periode = $tahun . '-' . ($tahun + 1);
|
|
@endphp
|
|
<option value="{{ $periode }}">{{ $periode }}</option>
|
|
@endfor
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="form-group">
|
|
<label for="">Alternatif</label>
|
|
<select name="id_alternatif" class="form-control">
|
|
<option value="">Pilih</option>
|
|
@foreach ($alternatif as $alt)
|
|
<option value="{{ $alt->id }}">{{$alt->kode_alternatif}} - {{ $alt->guru['nama_guru'] }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-8">
|
|
<label for=""><b>Penilaian Kriteria</b></label>
|
|
<hr style="border: 1px solid; margin-top:0px">
|
|
<table width="100%">
|
|
<tr>
|
|
<td><b>Kriteria</b></td>
|
|
<td width="30%"><b>Sub Kriteria</b></td>
|
|
</tr>
|
|
@foreach ($kriteria as $item)
|
|
<tr>
|
|
<td scope="row">
|
|
<input type="hidden" value="{{ $item->id }}" name="id_kriteria[]">
|
|
{{ $loop->iteration }}. {{ $item->nama_kriteria }}
|
|
</td>
|
|
<td>
|
|
<select name="id_sub[]" class="form-control mb-2">
|
|
<option value="">Pilih</option>
|
|
@foreach ($subKriteria as $sub)
|
|
<option value="{{ $sub->id }}">{{ $sub->sub_kriteria }}</option>
|
|
@endforeach
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<label for="" class="mt-3"><b>Keterangan Nilai</b></label>
|
|
<p class="mb-0">*Bobot pada setiap Sub Kriteria</p>
|
|
@foreach ($subKriteria as $subs)
|
|
<label for="" class="ml-4 mb-0">{{ $subs->bobot }} = {{ $subs->sub_kriteria }}</label><br>
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer" style="display: flex; justify-content: space-between!important;">
|
|
<button class="btn btn-sm btn-warning">Kembali</button>
|
|
<button class="btn btn-sm btn-primary">Simpan</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
@endsection
|