mirror of
https://github.com/Floriansylvain/Exo-technique-VIE-Barcelone-SaaS-HRTech.git
synced 2026-08-19 11:43:23 +02:00
18 lines
598 B
PHP
18 lines
598 B
PHP
<?php
|
|
require_once __DIR__ . '/../../../../src/utils.php';
|
|
$garages = DataManager::getGarages('clientb');
|
|
?>
|
|
<h1>Garages Client B</h1>
|
|
<?php if (empty($garages)): ?>
|
|
<p>Aucun garage trouvé.</p>
|
|
<?php else: ?>
|
|
<ul>
|
|
<?php foreach ($garages as $g): ?>
|
|
<li class="garage-item" data-garage-id="<?php echo htmlspecialchars($g['id'] ?? ''); ?>">
|
|
<strong><?php echo htmlspecialchars($g['title'] ?? '-'); ?></strong>
|
|
- <?php echo htmlspecialchars($g['address'] ?? '-'); ?>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|