Skip to content

Releases: maddhatter/laravel-fullcalendar

Add ability to override any FullCalendar settings (5.0)

13 Mar 00:48
Compare
Choose a tag to compare

Added the setOptions() function to allow setting FullCalendar.io settings.

Pass an associative array with the settings you wish to set, e.g.:

$calendar->setOptions(['firstDay' => 1]); //start weeks on mondays

Add ability to override any FullCalendar settings (4.2)

13 Mar 00:48
Compare
Choose a tag to compare

Added the setOptions() function to allow setting FullCalendar.io settings.

Pass an associative array with the settings you wish to set, e.g.:

$calendar->setOptions(['firstDay' => 1]); //start weeks on mondays

Laravel 5 Support

13 Feb 23:14
Compare
Choose a tag to compare

Added Laravel 5 support.

For Laravel 4.2, change your composer.json to require ~0.1

For Laravel 5, require dev-master or ~1.0

Initial Release

11 Feb 17:15
Compare
Choose a tag to compare

Added documentation and the event() method to make creating events for the calendar easier.