Iterate over dates like a calendar.
Year
is a collection ofMonth
s.Month
is a collection ofWeek
s.Week
is a collection ofDay
s.
composer require jnjxp/calerator
foreach (new Year(2016) as $month) {
foreach($month as $week) {
foreach ($week as $day){
//...
}
}
}