Disable Days on a datepicker
Is there a way to disable specific days on the datepicker?
I want to disable
- All the past days
- Sunday-Wednesday for every week.
Is there a way to do this?
1 Reply
https://filamentphp.com/docs/3.x/forms/fields/date-time-picker#disabling-specific-dates
Point 1 => you can set
->minDate(now())
Point 2 => Query out all date for sunday-wednesday and pass array in disabledDates()
, for more details check above links