Sorting the Data Table (order-desc)
If you are using a Data Table plugin and want to change the order to desc instead of the default asc, you can review the code below.
For more information about Data Table, you can visit https://datatables.net/.
<script>
$(document).ready(function() {
$('#example').DataTable( {
"order": [[ 0, "desc" ]]
} );
} );
</script>