index.blade.php
1.02 KB
@extends('layouts.backend.index')
@push('title','User')
@push('header','User')
@push('tombol')
<a href="#tambah" class="btn btn-sm btn-primary tambah">
Tambah <i class="fa fa-plus-circle"></i>
</a>
@endpush
@section('content')
<div class="panel-container show">
<div class="panel-content">
<table id="datatable" class="table table-bordered table-hover table-striped w-100">
<thead class="bg-primary-600">
<tr>
<th tabindex="0" rowspan="1" colspan="1">Nama</th>
<th class="text-center wid-10">Username</th>
<th class="text-center wid-10">Email</th>
<th class="text-center wid-10" tabindex="0" rowspan="1" colspan="1">Aksi</th>
</tr>
</thead>
</table>
</div>
</div>
@endsection
@section('datatables_index')
dt_ajax = "{{ url($url_admin.'/user/data') }}";
dt_btn_cols = [0, 1, 2, 3];
dt_cols = [
{ data: 'nama' },
{ data: 'username', searchable: false, orderable:false },
{ data: 'email', searchable: false, orderable:false },
{ data: 'action', orderable: false, searchable: false}
];
@endsection