Skip to content

Commit

Permalink
WIP: Move the action title order
Browse files Browse the repository at this point in the history
  • Loading branch information
arifpriadi committed Sep 15, 2024
1 parent 7177234 commit 9f8e042
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions resources/views/user/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
<table class="table table-striped table-bordered" id="user-table">
<thead>
<tr>
<th sytle="width: 100px;">Aksi</th>
<th>Nama</th>
<th>Alamat</th>
<th>Telepon</th>
<th>Status</th>
<th>Aksi</th>
</tr>
</thead>
</table>
Expand All @@ -49,6 +49,13 @@
serverSide: true,
ajax: "{!! route('setting.user.getdata') !!}",
columns: [{
data: 'aksi',
name: 'aksi',
class: 'text-center',
searchable: false,
orderable: false
},
{
data: 'name',
name: 'name'
},
Expand All @@ -63,17 +70,10 @@
{
data: 'status',
name: 'status'
},
{
data: 'aksi',
name: 'aksi',
class: 'text-center',
searchable: false,
orderable: false
}
],
order: [
[0, 'desc']
[1, 'desc']
]
});
});
Expand Down

0 comments on commit 9f8e042

Please sign in to comment.