laravel-calendar-events icon indicating copy to clipboard operation
laravel-calendar-events copied to clipboard

Recurring Calendar Events for Laravel.

Results 6 laravel-calendar-events issues
Sort by recently updated
recently updated
newest added

# Problem The example in `readme.md` in the `code` page of your package is not working. # Explanation In the page of your package you have ```php use InfyOm\LaravelCalendarEvents\CalendarEvent; use...

bug

Hi, I was looking to use your excellent package but I don't understand how you can implement a search with multiple events. I explain: you have provided this method: `$event->getEventsBetween('2021-01-05',...

This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 11.x. **Before merging**, you need to: - Checkout the `l11-compatibility`...

I found that if I create an event with: ``` [ 'recurring_type' => RecurringFrequencyType::RECURRING_TYPE_DAILY, 'repeat_interval' => 15, 'repeat_by_days' => [], 'repeat_by_months' => [], 'max_occurrences' => null, ] ``` When i...

Is there a way to define an event reoccurring biweekly? That means an event that is every other week, 14 days apart.