product page

This commit is contained in:
CHIEFSOFT\ameye
2024-09-08 19:27:19 -04:00
parent d232e7eb83
commit 1e0fadf169
7 changed files with 372 additions and 29 deletions
@@ -3,27 +3,32 @@ $product_array = [
[
"name" => "Personal Website",
"description" => "Product description here",
"status" => 0
"status" => 0,
"product" => 'A000001'
],
[
"name" => "Professional Website",
"description" => "Product description here",
"status" => 0
"status" => 0,
"product" => 'A000002'
],
[
"name" => "Personal Blog",
"description" => "Product description here",
"status" => 0
"status" => 0,
"product" => 'A000003'
],
[
"name" => "Professional Blog",
"description" => "Product description here",
"status" => 0
"status" => 0,
"product" => 'A000004'
],
[
"name" => "Practice EMR",
"description" => "Product description here",
"status" => 0
"status" => 0,
"product" => 'A000005'
]
];
?>
@@ -36,16 +41,18 @@ $product_array = [
?>
<div class="col-lg-6 col-xxl-6 m-b-30" style=" min-width: 200px;">
<div style="padding: 2px; border-radius: 10px;">
<div class="card card-statistics h-25 mb-0">
<div class="card-header d-flex justify-content-between">
<div class="card-heading" style="padding: 1px; background-color: aliceblue;">
<h4 class="card-title" style="color: #6b0392; font-size: 14px;"><?=$row['name']?></h4>
<a href="/product/<?=$row['product']?>">
<div class="card card-statistics h-25 mb-0" style="background-color: aliceblue;">
<div class="card-header d-flex justify-content-between">
<div class="card-heading" style="padding: 1px;">
<h4 class="card-title" style="color: #6b0392; font-size: 14px;"><?=$row['name']?></h4>
</div>
</div>
<div class="card-body">
<?=$row['description']?>
</div>
</div>
<div class="card-body">
<?=$row['description']?>
</div>
</div>
</a>
</div>
</div>