Open roulendz opened 8 years ago
Just to confirm, are you using Fullcalendar Scheduler ? Because that is a premium add-on. If you are the problem might be because the first event is using strings as the start and end times.
@roulendz Hello, I am new with Laravel-fullcalendar, Could you give me an example for how you added 'Associating Events with Resources' with laravel especially add/assign 'resources' like this code below:
resources: [
{
id: 'a',
title: 'Room A'
}
],
events: [
{
id: '1',
resourceId: 'a',
title: 'Meeting',
start: '2015-02-14'
}
]
Regards.
Inside FC docs there is option for events like Multiple Resources
Full calendar Dods
So I can put one event in all resourcces using array and resource ID.
So I tried and it worked only if there is just one id inside array.
When I put two ID's inside array, event desipares.
Second event shows up, first does not show up :(
Could anybodey give me a hint?