MIF_E31210141/resources/views/admin/app/users/permission/index.blade.php

70 lines
2.7 KiB
PHP

@push('css')
<link href="{{ frontend('plugins/custom/datatables/datatables.bundle.css') }}" rel="stylesheet" type="text/css" />
@endpush
@include('components.theme.pages.header')
<section>
<!-- basic table -->
<div class="row">
<div class="col-12">
<div class="card card-flush">
<div class="card-header flex-nowrap pt-5">
<div>
<div class="d-flex align-items-center position-relative my-1">
<i class="ki-outline ki-magnifier fs-1 position-absolute ms-6"><span class="path1"></span><span class="path2"></span></i>
<input type="text" id="search" class="form-control form-control-solid w-250px ps-15" placeholder="Search Permission"/>
</div>
</div>
</div>
<div class="card-body">
<div class="table-responsive">
<table id="data-table" class="table align-middle table-row-dashed fs-6 gy-5">
<thead>
<tr class="text-start text-gray-400 fw-bold fs-7 text-uppercase gs-0">
<th>ID</th>
<th>Name of Initial</th>
<th>Is Updated?</th>
<th>Action</th>
</tr>
</thead>
<tbody class="text-gray-600 fw-semibold"></tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
@push('scripts')
<script src="{{ frontend('plugins/custom/datatables/datatables.bundle.js') }}"></script>
<script type="text/javascript">
$(function () {
var table = $('#data-table').DataTable({
processing: true,
serverSide: true,
ajax: "{{ route('permission') }}",
stateSave: true,
columns: [
{data: null, name: 'id'},
{data: 'name', name: 'name'},
{data: 'updated_at', name: 'updated_at'},
{data: 'action', name: 'action', orderable: false, searchable: false},
],
createdRow: function (row, data, dataIndex) {
// Set the sequential number starting from 1
$('td', row).eq(0).html(dataIndex + 1);
}
});
// #myInput is a <input type="text"> element
$('#search').on('keyup change', function () {
table.search(this.value).draw();
});
});
</script>
@endpush
@include('components.theme.pages.footer')