Problem to visualize the contents of a Column, using FullCalendar

0

This is a system that allows scheduling the appointments of a local, managed to make it register in the database, however I can not get me to present this information, please if someone has any serious help, for that I'm asking for the last name and I want to show it but I can not do it.

events: [
        <?php foreach($events as $event): 
            $start = explode(" ", $event['start']);
            if($start[1] == '00:00:00'){
                $start = $start[0];

            }else{

                $start = $event['start'];       
            }
        ?>
            {

                id: '<?php echo $event['id']; ?>',  
                start: '<?php echo $start; ?>',
                title: '<?php echo $event['title']." La nueva Columna que debe aparecer"; ?>',
                color: '<?php echo $event['color']; ?>',
            },
        <?php endforeach; ?>
        ]

The page I also uploaded to Google Drive if someone wants to have it in its entirety link

    
asked by Alex 22.05.2018 в 08:08
source

0 answers