omnia-digital / livewire-calendar
Laravel Livewire calendar component
Installs: 35 230
Dependents: 1
Suggesters: 0
Security: 0
Stars: 122
Watchers: 2
Forks: 18
Open Issues: 3
pkg:composer/omnia-digital/livewire-calendar
Requires
- php: ^7.4|^8.0|^8.1|^8.2|^8.3|^8.4
- illuminate/support: ^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0
- livewire/livewire: ^2.0|^3.0|^4.0
Requires (Dev)
- orchestra/testbench: ^5.0|^6.0|^7.0|^8.0|^9.0|^10.0
- phpunit/phpunit: ^8.0|^9.0|^10.0|^11.0|^12.0
This package is auto-updated.
Last update: 2026-01-24 18:57:46 UTC
README
This package allows you to build a Livewire monthly calendar grid to show events for each day. Events can be loaded from within the component and will be presented on each day depending on the date of the event.
Special thanks to asantibanez/livewire-calendar as this originally was a fork of that package. We are using this new package in one of our large projects so we will be actively maintaining.
Preview
Installation
You can install the package via composer:
composer require omnia-digital/livewire-calendar
Compatibility
This package supports a wide range of PHP, Laravel, and Livewire versions:
| Package Version | PHP | Laravel | Livewire |
|---|---|---|---|
| 4.1.x | 7.4 - 8.4 | 6 - 12 | 2, 3, 4 |
| 3.2.x | 7.4 - 8.3 | 6 - 12 | 2, 3 |
| 3.1.x | 7.4 - 8.3 | 6 - 11 | 2, 3 |
| 3.0.x | 7.4 - 8.2 | 6 - 10 | 2, 3 |
| 2.2.x | 7.4 - 8.2 | 6 - 10 | 2 |
Recommended installation:
composer require omnia-digital/livewire-calendar:^4.1
For upgrade guides, see UPGRADE.md.
Requirements
This package uses livewire/livewire (https://laravel-livewire.com/) under the hood.
It also uses TailwindCSS (https://tailwindcss.com/) for base styling.
Please make sure you include both of this dependencies before using this component.
Usage
In order to use this component, you must create a new Livewire component that extends from
LivewireCalendar
You can use make:livewire to create a new component. For example.
php artisan make:livewire AppointmentsCalendar
- In the
AppointmentsCalendarclass, instead of extending from the baseComponentLivewire class, extend fromLivewireCalendar. - Remove the
rendermethod or you will override the parent and the calendar will not display. - You'll have a class similar to this snippet.
class AppointmentsCalendar extends LivewireCalendar { // }
In this class, you must override the following method
public function events() : Collection { // must return a Laravel collection }
In the events() method, return a collection holding the events that will be displayed on
the calendar. Events must be keyed arrays holding at least the following keys:
id, title, description, date (date must be a Carbon\Carbon instance).
Example
public function events() : Collection { return collect([ [ 'id' => 1, 'title' => 'Breakfast', 'description' => 'Pancakes! 🥞', 'date' => Carbon::today(), ], [ 'id' => 2, 'title' => 'Meeting with Pamela', 'description' => 'Work stuff', 'date' => Carbon::tomorrow(), ], ]); }
The date value will be used to determine to what day the event belongs to. To
load values in the events() method, you can use the following component properties
to filter your events.
startsAt: starting date of monthendsAt: ending date of monthgridStartsAt: starting date of calendar grid. Can be a date from the previous month.endingStartsAt: ending date of calendar grid. Can be a date from the next month.
Example
public function events(): Collection { return Model::query() ->whereDate('scheduled_at', '>=', $this->gridStartsAt) ->whereDate('scheduled_at', '<=', $this->gridEndsAt) ->get() ->map(function (Model $model) { return [ 'id' => $model->id, 'title' => $model->title, 'description' => $model->notes, 'date' => $model->scheduled_at, ]; }); }
Multi-Day Events
Events can span multiple days using start_date and end_date instead of the legacy date field:
public function events(): Collection { return collect([ [ 'id' => 1, 'title' => 'Conference', 'description' => 'Annual Tech Conference', 'start_date' => Carbon::parse('2024-03-15'), 'end_date' => Carbon::parse('2024-03-17'), ], ]); }
This event will appear on March 15, 16, and 17 with visual styling indicating it spans multiple days.
Multi-Day Event with Times
You can optionally include start_time and end_time for display purposes:
[
'id' => 2,
'title' => 'Training Session',
'start_date' => Carbon::parse('2024-03-20'),
'end_date' => Carbon::parse('2024-03-22'),
'start_time' => '09:00',
'end_time' => '17:00',
]
The start time will display on the first day, and end time on the last day.
Event Metadata in Custom Views
When customizing the event view, multi-day events include additional metadata:
$event['is_multiday']- Boolean, true if event spans multiple days$event['is_first_day']- Boolean, true if this is the first day of the event$event['is_last_day']- Boolean, true if this is the last day of the event$event['day_position']- Integer, which day of the event (1-indexed)$event['total_days']- Integer, total number of days the event spans
Note: Multi-day events have drag and drop disabled by default.
Backwards Compatibility
Existing events using the date field will continue to work. The calendar automatically detects which format is being used. If both date and start_date/end_date are present, the new format takes precedence.
Now, we can include our component in any view.
Example
<livewire:appointments-calendar/>
This will render a calendar grid.
By default, the component will render the current month. If you want to change the
starting month, you can set the initialYear and initialMonth props.
Example
<livewire:appointments-calendar initialYear="2019" initialMonth="12" />
If you use it as a nested component, you can use variables and make it dynamic (:key prop will force livewire to re-render calendar).
Example
<livewire:appointments-calendar initialYear="{{ $currentYear }}" initialMonth="{{ $currentMonth }}" :key="$currentYear.$currentMonth" />
For Livewire 3+: Drag and drop is now handled via Alpine.js (bundled with Livewire 3+), so @livewireCalendarScripts is optional. It's only needed if you've published and customized the views using the legacy inline event handlers.
For Livewire 2: You must include scripts with @livewireCalendarScripts to enable drag and drop. Include them after @livewireScripts:
@livewireScripts @livewireCalendarScripts
The component has 3 public methods that can help navigate forward and backward through months:
goToPreviousMonthgoToNextMonthgoToCurrentMonth
You can use these methods on extra views using before-calendar-view or after-calendar-view explained below.
Advanced usage
Ui customization
You can customize the behavior of the component with the following properties when rendering on a view:
-
week-starts-atwhich can be a number from 0 to 6 according to Carbon days of week to indicate with which day of week the calendar should render first. -
event-viewwhich can be anyblade.phpview that will be used to render the event card. This view will be injected with a$eventvariable holding its data. -
before-calendar-viewandafter-calendar-viewcan be anyblade.phpviews that can be rendered before or after the calendar itself. These can be used to add extra features to your component using Livewire. -
drag-and-drop-classescan be any css class used to render the hover effect when dragging an event over each day in the calendar. By default, this value isborder border-blue-400 border-4 -
day-of-week-viewwhich can be anyblade.phpview that will be used to render the header of each calendar day. This view will be injected thedayproperty which is a Carbon instance of the day of the week.
<livewire:appointments-grid week-starts-at="0, 1, 2, 3, 4, 5 or 6. 0 stands for Sunday" event-view="path/to/view/starting/from/views/folder" day-of-week-view="path/to/view/starting/from/views/folder" before-calendar-view="path/to/view/starting/from/views/folder" after-calendar-view="path/to/view/starting/from/views/folder" drag-and-drop-classes="css classes" />
Advanced ui customization
(This options should be used using blade views based on the component default views)
To use these options, it is recommended to publish the base blade views used by the component and extend their
behavior and styling to your liking. To do this, run php artisan vendor:publish and export the livewire-calendar tag.
-
calendar-viewwhich can be anyblade.phpview that renders the whole component. It's advised to override this view with an altered copy of the basecalendar-vieweg adding a view next to the component. -
day-viewwhich can be anyblade.phpview that will be used to render each day of the month. This view will be injected with the following properties:componentId(id of the Livewire component) ,day(day of the month as a Carbon instance) ,dayInMonth(if the day is part of the month or not) ,isToday(if the day is today's date) ,events(events collection that correspond to this day)
Example
<livewire:appointments-grid calendar-view="path/to/view/starting/from/views/folder" day-view="path/to/view/starting/from/views/folder" />
Interaction customization
You can override the following methods to add interactivity to your component
public function onDayClick($year, $month, $day) { // This event is triggered when a day is clicked // You will be given the $year, $month and $day for that day } public function onEventClick($eventId) { // This event is triggered when an event card is clicked // You will be given the event id that was clicked } public function onEventDropped($eventId, $year, $month, $day) { // This event will fire when an event is dragged and dropped into another calendar day // You will get the event id, year, month and day where it was dragged to }
Automatic polling
You can also add automatic polling if needed using pollMillis parameters. You can combo with pollAction in
order to call a specific action in your component at the desired polling interval.
Disabling interactions
By default click and drag/drop events are enabled. To disable them you can use the following parameters when rendering the component
<livewire:appointments-grid :day-click-enabled="false" :event-click-enabled="false" :drag-and-drop-enabled="false" />
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email us at info@omnia.church instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
