Weekends are disabled on the booking field.

Important JavaScript

flatpickr("#booking", {
  minDate: "today",
  maxDate: new Date().fp_incr(60),
  disable: [
    function (date) {
      return date.getDay() === 0 || date.getDay() === 6;
    },
  ],
});
flatpickr("#inline-date", { inline: true });