51 lines
2.2 KiB
PHP
51 lines
2.2 KiB
PHP
<?php
|
|
$page_title = "Our Branches - AFG CARS";
|
|
include 'includes/header.php';
|
|
require_once 'db/config.php';
|
|
|
|
$pdo = db();
|
|
$branches = $pdo->query("SELECT * FROM branches ORDER BY city ASC")->fetchAll();
|
|
?>
|
|
|
|
<div class="container my-5">
|
|
<div class="text-center mb-5">
|
|
<h1 class="fw-bold">Our Branches</h1>
|
|
<p class="text-muted">Visit us at any of our regional offices across Afghanistan.</p>
|
|
</div>
|
|
|
|
<div class="row g-4">
|
|
<?php foreach ($branches as $branch): ?>
|
|
<div class="col-md-6 col-lg-3">
|
|
<div class="card h-100 border-0 shadow-sm rounded-4 overflow-hidden">
|
|
<div class="bg-primary py-3 text-center text-white">
|
|
<i class="bi bi-geo-alt-fill fs-3"></i>
|
|
</div>
|
|
<div class="card-body">
|
|
<h5 class="card-title fw-bold text-primary"><?php echo htmlspecialchars($branch['city']); ?></h5>
|
|
<p class="card-text small mb-2 text-muted">
|
|
<i class="bi bi-map me-2"></i><?php echo htmlspecialchars($branch['address']); ?>
|
|
</p>
|
|
<p class="card-text small mb-2">
|
|
<i class="bi bi-telephone me-2"></i><?php echo htmlspecialchars($branch['phone']); ?>
|
|
</p>
|
|
<p class="card-text small text-muted">
|
|
<i class="bi bi-clock me-2"></i><?php echo htmlspecialchars($branch['working_hours']); ?>
|
|
</p>
|
|
</div>
|
|
<div class="card-footer bg-white border-0 pb-3">
|
|
<a href="contact.php?branch=<?php echo urlencode($branch['city']); ?>" class="btn btn-outline-primary btn-sm w-100 rounded-pill">Contact Branch</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<div class="mt-5 p-5 bg-light rounded-4 text-center">
|
|
<h3 class="fw-bold">Don't see a branch near you?</h3>
|
|
<p class="text-muted">We are constantly expanding. You can still browse and buy cars online from anywhere in Afghanistan!</p>
|
|
<a href="cars.php" class="btn btn-primary px-4 py-2 rounded-pill mt-3">Browse Cars Online</a>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include 'includes/footer.php'; ?>
|