I want to calculate the number of working days.
By using carbon I can calculate days and reduce weekends.
$num_days = $to_date->diffInWeekdays($from_date) + 1;
And I have an array of holidays, and I want to reduce the number of days if there is a holiday in between the days.
Is there any way to do this.
Thank you
You could use
diffInDaysFiltered
to achieve what you're after.Assuming your holidays are an array of
Carbon
instances you could do something like:If it's just an array of strings then you could do something like: