172 lines
7.2 KiB
PHP
172 lines
7.2 KiB
PHP
@extends('layouts.app')
|
|
@section('title', 'Tambah Sub Kriteria '. $kriteria->nama_kriteria)
|
|
@section('topbar', 'Data Sub Kriteria')
|
|
@section('css')
|
|
|
|
<!-- Custom styles for this page -->
|
|
<link href="{{ asset('vendor/datatables/dataTables.bootstrap4.min.css') }}" rel="stylesheet">
|
|
@stop
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<div class="card shadow mb-4">
|
|
<!-- Card Header - Accordion -->
|
|
<a href="#tambahcrips" class="d-block card-header py-3" data-toggle="collapse"
|
|
role="button" aria-expanded="true" aria-controls="collapseCardExample">
|
|
<h6 class="m-0 font-weight-bold text-primary">Tambah Sub Kriteria</h6>
|
|
</a>
|
|
|
|
<!-- Card Content - Collapse -->
|
|
<div class="collapse show" id="tambahcrips">
|
|
<div class="card-body">
|
|
@if (Session::has('msg'))
|
|
<div class="alert alert-info alert-dismissible fade show" role="alert">
|
|
<strong>Infor</strong> {{ Session::get('msg') }}
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
@endif
|
|
|
|
<form action="{{ route('crips.store') }}" method="post">
|
|
@csrf
|
|
<input type="hidden" value="{{ $kriteria->id }}" name="kriteria_id">
|
|
<div class="form-group">
|
|
<label for="nama">Nama Sub Kriteria</label>
|
|
<input type="text" class="form-control @error ('nama_crips') is-invalid @enderror" name="nama_crips" value="{{ old('nama_crips') }}">
|
|
|
|
@error('nama_crips')
|
|
<div class="invalid-feedback" role="alert">
|
|
{{ $message }}
|
|
</div>
|
|
@enderror
|
|
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="bobot">Bobot</label>
|
|
<input type="text" class="form-control @error ('bobot') is-invalid @enderror" name="bobot" value="{{ old('bobot') }}">
|
|
|
|
@error('bobot')
|
|
<div class="invalid-feedback" role="alert">
|
|
{{ $message }}
|
|
</div>
|
|
@enderror
|
|
|
|
</div>
|
|
<button class="btn btn-primary">Simpan</button>
|
|
<a href="{{ route('kriteria.index') }}" class="btn btn-success">Kembali</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-8">
|
|
<div class="card shadow mb-4">
|
|
<!-- Card Header - Accordion -->
|
|
<a href="#listcrips" class="d-block card-header py-3" data-toggle="collapse"
|
|
role="button" aria-expanded="true" aria-controls="collapseCardExample">
|
|
<h6 class="m-0 font-weight-bold text-primary">List Sub Kriteria {{ $kriteria->nama_kriteria }}</h6>
|
|
</a>
|
|
|
|
<!-- Card Content - Collapse -->
|
|
<div class="collapse show" id="listcrips">
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
{{-- <a href="{{ URL::to('download-crips-pdf') }}" target="_blank" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm float-right"><i
|
|
class="fas fa-download fa-sm text-white-50"></i>Download Laporan</a> --}}
|
|
<br><br>
|
|
<table class="table table-striped table-hover" id="DataTable" data-paging="false">
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Nama Sub Kriteria</th>
|
|
<th>Bobot</th>
|
|
<th>Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@php $no = 1; @endphp
|
|
@foreach ($crips as $row)
|
|
<tr>
|
|
<td>{{ $no++ }}</td>
|
|
<td>{{ $row->nama_crips }}</td>
|
|
<td>{{ $row->bobot }}</td>
|
|
<td>
|
|
|
|
<a href="{{ route('crips.edit',$row->id) }}" class="btn btn-sm btn-circle btn-warning">
|
|
<i class="fa fa-edit"></i>
|
|
</a>
|
|
|
|
<a href="{{ route('crips.destroy',$row->id) }}" class="btn btn-sm btn-circle btn-danger hapus">
|
|
<i class="fa fa-trash"></i>
|
|
</a>
|
|
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
<div class="d-flex justify-content-end">
|
|
{{ $crips->links() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@stop
|
|
@section('js')
|
|
|
|
<!-- Page level plugins -->
|
|
<script src="{{ asset('vendor/datatables/jquery.dataTables.min.js') }}"></script>
|
|
<script src="{{ asset('vendor/datatables/dataTables.bootstrap4.min.js') }}"></script>
|
|
<script src="{{ asset('js/sweetalert.js')}}"></script>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('#DataTable').DataTable();
|
|
|
|
$('.hapus').on('click', function(){
|
|
swal({
|
|
title: "Apa anda yakin?",
|
|
text: "Sekali anda menghapus data, data tidak dapat dikembalikan lagi!",
|
|
icon: "warning",
|
|
buttons: true,
|
|
dangerMode: true,
|
|
})
|
|
.then((willDelete) => {
|
|
if (willDelete) {
|
|
$.ajax({
|
|
url: $(this).attr('href'),
|
|
type: 'DELETE',
|
|
data: {
|
|
'_token' : "{{ csrf_token() }}"
|
|
},
|
|
success:function()
|
|
{
|
|
swal("Data berhasil dihapus!", {
|
|
icon: "success",
|
|
}).then((willDelete) => {
|
|
window.location = "{{ route('kriteria.show', $kriteria->id) }}"
|
|
});
|
|
}
|
|
})
|
|
} else {
|
|
swal("Data Aman!");
|
|
}
|
|
});
|
|
|
|
return false;
|
|
})
|
|
})
|
|
</script>
|
|
|
|
@stop
|
|
|