TIF_E41200988/Pengukuran Kinerja Dosen/resources/views/alternatif/perbandingan.blade.php

58 lines
2.2 KiB
PHP

@include('layouts.header_admin')
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800"><i class="fas fa-fw fa-users"></i> Data Alternatif</h1>
<a href="{{ url('Alternatif') }}" class="btn btn-secondary btn-icon-split"><span class="icon text-white-50"><i class="fas fa-arrow-left"></i></span>
<span class="text">Kembali</span>
</a>
</div>
@if (session('message'))
{!! session('message') !!}
@endif
<div class="card shadow mb-4">
<!-- /.card-header -->
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-success"><i class="fa fa-table"></i> Daftar Data Kriteria</h6>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead class="bg-success text-white">
<tr align="center">
<th width="5%">No</th>
<th width="15%">Kode Kriteria</th>
<th>Nama Kriteria</th>
<th width="25%">Aksi</th>
</tr>
</thead>
<tbody>
@php
$no = 1;
@endphp
@foreach ($list as $data)
<tr align="center">
<td>{{ $no }}</td>
<td>{{ $data->kode_kriteria }}</td>
<td>{{ $data->nama_kriteria }}</td>
<td>
<div class="btn-group" role="group">
<a href="{{ url('Alternatif/ahp_alternatif/'.$data->id_kriteria) }}" class="btn btn-primary btn-sm"><i class="fa fa-check"></i> Perbandingan Alternatif</a>
</div>
</td>
</tr>
@php
$no++;
@endphp
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@include('layouts.footer_admin')