Datepicker disable weekends
Hi, has anyone been able to disable only weekends on the Datepicker component?
2 Replies
I use this: ->disabledDates(function () {
$start = Carbon::now()->startOfMonth();
$end = $start->copy()->endOfMonth();
$period = CarbonPeriod::create($start, $end);
$weekends = [];
foreach ($period as $date) {
if ($date->isWeekend()) {
$weekends[] = $date;
}
}
return $weekends;