Viewing File: D:\INETPUB\VHOSTS\officespacebangalore.com\httpdocs\includes\card.php
<?php
$p = $p ?? [];
$cover = img($p['pimage'] ?? '');
?>
<article class="property-card">
<!-- Property Image -->
<a
class="card-media"
href="<?= url('property.php?id=' . (int) $p['pid']) ?>"
>
<img
src="<?= $cover ?>"
alt="<?= e($p['title']) ?>"
loading="lazy"
>
<span class="card-badge">
<?= e(ucfirst($p['stype'])) ?>
</span>
<?php if ((int) ($p['isFeatured'] ?? 0) === 1): ?>
<span class="featured-badge">
Featured
</span>
<?php endif; ?>
</a>
<!-- Property Details -->
<div class="card-body">
<div class="card-type">
<?= e(
property_types()[$p['type']]
?? $p['type']
?? 'Property'
) ?>
</div>
<h3>
<a
href="<?= url('property.php?id=' . (int) $p['pid']) ?>"
>
<?= e($p['title']) ?>
</a>
</h3>
<p class="card-location">
⌖
<?= e($p['location']) ?>
·
<?= e($p['city']) ?>
</p>
<!-- Property Meta -->
<div class="card-meta">
<strong>
<?= money($p['price']) ?>
</strong>
<span>
<?= number_format((int) $p['size']) ?> sqft
</span>
</div>
</div>
</article>
Back to Directory
File Manager