Example #1
0
?>
<div class="row">
    <table class="table table-striped">
        <thead>
        <tr>
            <th>#</th>
            <th>Date de réservation</th>
            <!--<th>Horaire</th>-->
            <th>Lieu de livraison</th>
            <th>Composition</th>
            <th>Utilisateur</th>
        </tr>
        </thead>
        <tbody>
        <?php 
foreach ($orderDao->getAll() as $order) {
    ?>
            <tr>
                <td><?php 
    echo sprintf("%04s", $order->getId());
    ?>
</td>
                <td><?php 
    echo Utils::formatDate($order->getCreated(), "d/m/Y H:m");
    ?>
</td>
                <!--<td><?php 
    echo $order->getTimeFrame() != null ? $order->getTimeFrame()->__toString() : "-";
    ?>
</td>-->
                <td><?php