BLACKSITE
:
216.73.216.62
:
147.93.18.13 / vinyasaweddings.com
:
Linux srv667811 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
:
/
var
/
www
/
kds
/
views
/
Upload File:
files >> /var/www/kds/views/prices.php
<?php $activePage = 'prices'; // Default fallback values $pageTitle = "Shoe Cleaning Services in Delhi | Mochi Wale"; $pageDescription = "Get premium shoe cleaning, protection, and recoloring services by Mochi Wale. Book pickup today!"; $pageKeywords = "shoe cleaning, leather care, shoe protection, shoe recoloring, Delhi, Mochi Wale"; // Fetch SEO data from DB $stmt = $db->prepare("SELECT seo_title, seo_keywords, seo_description FROM pages WHERE page_name = ?"); $stmt->execute([$activePage]); $data = $stmt->fetch(PDO::FETCH_ASSOC); if ($data) { $pageTitle = $data['seo_title'] ?: $pageTitle; $pageKeywords = $data['seo_keywords'] ?: $pageKeywords; $pageDescription = $data['seo_description'] ?: $pageDescription; } require 'views/layout/header.php'; ?> <?php // Fetch all active services from the database $stmt = $db->prepare("SELECT * FROM services WHERE status = 'active' ORDER BY id DESC"); $stmt->execute(); $services = $stmt->fetchAll(PDO::FETCH_ASSOC); ?> <!-- <div class="breadcrumb-hero position-relative"> <div class="breadcrumb-bg"> <img src="https://images.unsplash.com/photo-1600185365483-26d7a4cc7519?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80" alt="Background" class="img-fluid w-100"> <div class="breadcrumb-overlay"></div> </div> <div class="breadcrumb-content position-relative text-center text-white"> <div class="container"> <h1 class="page-title display-4 fw-bold mb-3">Prices</h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center mb-0"> <li class="breadcrumb-item"> <a href="/" class="text-white text-decoration-none">Home</a> </li> <li class="breadcrumb-item active text-primary" aria-current="page">Prices</li> </ol> </nav> </div> </div> </div> --> <?php require 'views/layout/hero.php'; ?> <section class="services-cards-section py-5" style="background-color: var(--gray);"> <div class="container"> <div class="section-header text-center mb-5"> <h2 class="section-title fw-bold display-5 mb-3" style="color: var(--dark); font-family: var(--font-main); font-weight: var(--font-weight-semibold);">Our Premium Services</h2> <p class="section-subtitle" style="color: var(--secondary); font-family: var(--font-main); font-size: 1.25rem;">Expert care for your luxury items</p> </div> <div class="row g-4 justify-content-center"> <?php if (!empty($services)): ?> <?php foreach ($services as $service): $product_details = json_decode($service['product_detail'] ?? '[]', true); ?> <div class="col-lg-6 col-md-8"> <div class="service-card h-100 d-flex flex-column border-0 rounded-3 overflow-hidden" style="background-color: var(--light); box-shadow: 0 4px 12px rgba(0,0,0,0.05);"> <div class="service-header p-4" style="background-color: var(--primary);"> <h3 class="service-title mb-0 fs-4" style="color: var(--light); font-family: var(--font-main); font-weight: var(--font-weight-medium);"> <?= htmlspecialchars($service['title']) ?> </h3> </div> <div class="service-body p-4 d-flex flex-column flex-grow-1"> <?php if (!empty($product_details)): ?> <div class="product-details mt-3"> <h4 class="fs-5 mb-3" style="color: var(--secondary); font-family: var(--font-main); font-weight: var(--font-weight-medium);">Service Details</h4> <ul class="list-unstyled"> <?php foreach ($product_details as $detail): ?> <li class="mb-3 d-flex justify-content-between align-items-center border-bottom pb-2" style="border-color: rgba(107, 159, 175, 0.2);"> <span class="product-name" style="color: var(--dark); font-family: var(--font-main);"> <?= htmlspecialchars($detail['product_name']) ?> </span> <span class="product-price fw-semibold" style="color: var(--primary); font-family: var(--font-main);"> ₹ <?= number_format($detail['price'], 2) ?> </span> </li> <?php endforeach; ?> </ul> </div> <?php else: ?> <p class="text-muted mt-3" style="font-family: var(--font-main);">No product details available.</p> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> <?php else: ?> <div class="col-12 text-center py-5"> <div class="alert" style="background-color: var(--primary-light); color: var(--dark); font-family: var(--font-main);"> No services found. </div> </div> <?php endif; ?> </div> </div> </section> <?php require 'views/layout/enquiry.php'; ?> <?php require 'views/layout/enquiry-modal.php'; ?> <?php require 'views/layout/call.php'; ?> <?php require 'views/layout/footer.php'; ?>