How to show 24 hour time picker in tempusdominus plugin
I had the same problem and I changed the code to:
$('.datePicker').datetimepicker({
format: 'DD/MM/YYYY, HH:mm',
});
and it works now
In your jQuery you should set format from LT to
format:'HH:mm';
If you want the date and time just set
format: 'dddd, MMMM Do YYYY, HH:mm';
You can find all your formats at Formats