예제 #1
0
?>
<div class="row">

    <table class="table table-striped">
        <thead>
        <tr>
            <th>#</th>
            <th>Nom</th>
            <th>Créé le</th>
            <th>Statut</th>
            <th>Action</th>
        </tr>
        </thead>
        <tbody>
        <?php 
foreach ($drinkDao->getAll() as $drink) {
    ?>
            <tr>
                <td><?php 
    echo $drink->getId();
    ?>
</td>
                <td><?php 
    echo $drink->getName();
    ?>
</td>
                <td><?php 
    echo Utils::formatDate($drink->getCreated());
    ?>
</td>
                <td><?php