Releases: maddhatter/laravel-fullcalendar
Releases · maddhatter/laravel-fullcalendar
Add ability to override any FullCalendar settings (5.0)
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)
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
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
Added documentation and the event()
method to make creating events for the calendar easier.