asantibanez / livewire-calendar

Laravel Livewire component to show Events in a good looking monthly calendar
MIT License
908 stars 233 forks source link

Feature request: isPast() #9

Closed wrabit closed 3 years ago

wrabit commented 4 years ago

Would be nice to alter the display of a day providing it's in the current month, but in the past.

Have published vendor files for now and added

                                        'isToday' => $day->isToday(),
                                        'isPast' => $day->isPast(),
                                        'events' => $getEventsForDay($day, $events),

But this really is a nice bit of work! Thanks for sharing it!

asantibanez commented 3 years ago

Thanks @wrabit !

Looks interesting. Mind creating a PR with this suggestion?