Usaremos una clase “no-sort” que añadiremos en los td de la cabecera que no queramos ordenar y le pasaremos unos parámetros junto a la llamada de la siguiente forma:
$('#datatable').dataTable({
"columnDefs": [ {
"targets": 'no-sort',
"orderable": false,
} ]
});
HTML
<table id="datatable" class="table table-striped table-bordered">
<thead>
<tr>
<th>{{ Lang::get('elements.name') }}</th>
<th>{{ Lang::get('elements.users') }}</th>
<th class="no-sort"></th>
</tr>
</thead>
<tbody>
...

