laravel-fullcalendar icon indicating copy to clipboard operation
laravel-fullcalendar copied to clipboard

Full Calendar does not show

Open jaysoniscale opened this issue 6 years ago • 3 comments

Hi, I'm having this error when using laravel-fullcalendar. image

image

jaysoniscale avatar Sep 12 '18 06:09 jaysoniscale

@jaysoniscale It is important that you load jQuery and Moment’s JS files before loading FullCalendar’s JS files. You forgot include the link to jQuery lib before MomentJS's file.

websiteproduct avatar Sep 12 '18 07:09 websiteproduct

did you fix this? having the same problem

CalGat avatar Apr 15 '19 13:04 CalGat

Check your layouts.app file

If you have a line like: <script src="{{ asset('js/app.js') }}" defer></script>

Try removing the "defer" attribute: <script src="{{ asset('js/app.js') }}"></script>

JuanFLZ avatar Apr 17 '19 15:04 JuanFLZ