I am using Yii 2.0 PHP framework and I have a dashboard where I put my calendar. I used a jQuery plugin called FullCalendar for this. But it's not even showing in my page.
I used AdminLTE theme's calendar. Under that blue horizontal line should be the calendar. You can look it up here: https://almsaeedstudio.com/themes/AdminLTE/pages/calendar.html
Here's what I see in the browser console:
But I already have included all the necessary scripts and css in my page.
<link href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.4.0/fullcalendar.min.css" rel="stylesheet" type="text/css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.4.0/fullcalendar.print.css" rel="stylesheet" type="text/css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/2.4.0/fullcalendar.min.js"></script>
<script src="<?php echo Yii::$app->request->baseUrl; ?>/scripts/fullcalendar/fullcalendar.js"></script>
<script src="<?php echo Yii::$app->request->baseUrl; ?>/scripts/fullcalendar/fullcalendar.min.js"></script>
But it's still not working. I don't know what else to do so I'm asking your help. Thanks!