1
0
mirror of synced 2025-12-28 00:23:25 +00:00

feat(bases) structure and example with components

This commit is contained in:
Valentin
2024-06-04 19:24:03 +02:00
parent 3697db1384
commit d393c7ae49
30 changed files with 240 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
<div>
<table class="table table-bordered">
<thead>
<tr>
<th>Direction</th>
<th>Prochain départ</th>
<th>Prochain suivant</th>
</tr>
</thead>
<tbody>
<?php foreach ($directions as $direction): ?>
<tr>
<td><?php echo $direction['direction']; ?></td>
<td><?php echo $direction['next_departure']; ?></td>
<td><?php echo $direction['following_departure']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>