TIF_E41200029/resources/views/kriteria/index.blade.php

61 lines
2.5 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-cube"></i> Data Kriteria</h1>
<a href="{{ url('Kriteria/tambah') }}" class="btn btn-success"> <i class="fa fa-plus"></i> Tambah Data </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-danger"><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-danger text-white">
<tr align="center">
<th width="5%">No</th>
<th>Kode Kriteria</th>
<th>Nama Kriteria</th>
<th>Bobot</th>
<th>Jenis</th>
<th width="15%">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->keterangan }}</td>
<td>{{ $data->bobot }}</td>
<td>{{ $data->jenis }}</td>
<td>
<div class="btn-group" role="group">
<a data-toggle="tooltip" data-placement="bottom" title="Edit Data" href="{{ url('Kriteria/edit/'.$data->id_kriteria) }}" class="btn btn-warning btn-sm"><i class="fa fa-edit"></i></a>
<a data-toggle="tooltip" data-placement="bottom" title="Hapus Data" href="{{ url('Kriteria/destroy/'.$data->id_kriteria) }}" onclick="return confirm('Apakah anda yakin untuk menghapus data ini')" class="btn btn-danger btn-sm"><i class="fa fa-trash"></i></a>
</div>
</td>
</tr>
@php
$no++;
@endphp
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@include('layouts.footer_admin')