maddhatter / laravel-fullcalendar

Laravel FullCalendar.io Helper
627 stars 267 forks source link

Full Calendar does not show #125

Open jaysoniscale opened 6 years ago

jaysoniscale commented 6 years ago

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

image

websiteproduct commented 6 years ago

@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.

CalGat commented 5 years ago

did you fix this? having the same problem

JuanFLZ commented 5 years ago

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>