I want to know how do I start the date enabled for tomorrow in datepicker bootstrap, for example, the user can not select today's date nor yesterday, the user can only click dates from tomorrow on up to 3 business days, not being able to click on Sundays as well.
Follow my code:
$('.datepicker').datepicker({
format: "dd/mm/yyyy",
language: "pt-BR",
minViewMode: 0,
orientation: 'auto',
startDate: "date",
autoclose: true,
daysOfWeekDisabled: ['0']
});
Does anyone qualify to solve this problem?