TIF_E41200315/resources/views/pages/data_alternatif/index.blade.php

101 lines
3.2 KiB
PHP

@extends('layout.master')
@section('title', 'Data Alternatif')
@push('css')
<link href="{{ url('sbAdmin/vendor/datatables/dataTables.bootstrap4.min.css') }}" rel="stylesheet">
@endpush
@section('content')
@if (session('success'))
<div class="alert alert-success">
{{ session('success') }}
</div>
@endif
<div class="card border-top-primary shadow mb-4">
<div class="card-body pt-3">
<div class="mb-2">
<a href="{{ route('create_alternatif') }}" class="btn btn-sm btn-primary">Tambah Alternatif</a>
</div>
<div class="table-responsive">
<table class="table table-bordered" id="tabelAlternatif" width="100%" cellspacing="0">
<thead>
<tr>
<th width="5%">No</th>
<th width="5%">Kode</th>
<th>Nama Alternatif</th>
<th class="text-center" width="20%">Action</th>
</tr>
</thead>
<tbody> </tbody>
</table>
</div>
</div>
</div>
@endsection
@push('js')
<!-- Page level plugins -->
<script src="{{ url('sbAdmin/vendor/datatables/jquery.dataTables.min.js') }}"></script>
<script src="{{ url('sbAdmin/vendor/datatables/dataTables.bootstrap4.min.js') }}"></script>
<!-- Page level custom scripts -->
<script src="{{ url('sbAdmin/js/demo/datatables-demo.js') }}"></script>
<script>
//TAMPIL DATA
let table;
table = $('#tabelAlternatif').DataTable({
processing: true,
serverSide: true,
ajax: "{{ route('data_alternatif') }}",
"language": {
"emptyTable": "Data Alternatif kosong."
},
columnDefs: [{
targets: 3,
className: 'text-center'
}],
columns:[
{data:'DT_RowIndex', name:'DT_RowIndex'},
{data:'kode_alternatif', name:'kode_alternatif'},
{data:'nama_alternatif', name:'nama_alternatif'},
{data:'action', name:'action'},
],
});
function deleteData(url) {
Swal.fire({
title: 'Apakah anda yakin?',
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#28a745',
cancelButtonColor: '#dc3545',
confirmButtonText: 'Ya!',
cancelButtonText: 'Tidak'
}).then((result) => {
if (result.isConfirmed) {
$.post(url, {
'_token': $('[name=csrf-token]').attr('content'),
'_method': 'delete'
})
.done((response) => {
Swal.fire({
icon: 'success',
title: response,
timer: 2000
})
table.ajax.reload();
})
.fail((errors) => {
Swal.fire({
icon: 'error',
title: 'Data tidak dapat dihapus!',
})
return;
})
}
})
}
</script>
@endpush