$('#eventDate-container .input-group.date').datepicker({
weekStart: 1, // Monday is the start day
autoclose: true,
todayHighlight: true,
startDate: "4/10/2017", // Disable all dates before this date
datesDisabled: ['01/01/1970', '12/31/2099'] // Example for future use
});