Product Listing

This commit is contained in:
CHIEFSOFT\ameye
2024-09-08 15:26:30 -04:00
parent f7a35cb074
commit 676944d728
2 changed files with 28 additions and 1 deletions
@@ -0,0 +1,25 @@
<div class="row">
<?php
for ($i=0; $i<5; $i++)
{
?>
<div class="col-lg-6 col-xxl-6 m-b-30" style=" min-width: 200px;">
<div style="padding: 2px; border-radius: 10px; background-color: aliceblue;">
<div class="card card-statistics h-25 mb-0">
<div class="card-header d-flex justify-content-between">
<div class="card-heading">
<h4 class="card-title">My Products ${i}</h4>
</div>
</div>
<div class="card-body">
Yes 001
</div>
</div>
</div>
</div>
<?php
}
?>
</div>