관리-도구
편집 파일: c6f3177aa5478d8b1ff49f692c357d56.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content="" /> <meta name="keywords" content="" /> <link rel="icon" href="<?php echo e(asset('assets/images/logo.png')); ?>" sizes="35x35" type="image/png"> <title>Room Gear Designs</title> <link rel="stylesheet" href="<?php echo e(asset('assets/css/all.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/fontello.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/animate.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/bootstrap.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/jquery.fancybox.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/jquery.bootstrap-touchspin.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/nouislider.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/perfect-scrollbar.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/slick.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/style.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/responsive.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('assets/css/color.css')); ?>"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"> </head> <body> <main> <header class="stick style1 w-100"> <!-- ===== TOP INFO BAR (DESKTOP ONLY) ===== --> <div class="header-top desktop-only w-100"> <div class="container"> <div class="header-top-inner"> <!-- LEFT --> <div class="header-top-left"> <a href="mailto:sales@roomgeardesigns.com"> <i class="fas fa-envelope"></i> sales@roomgeardesigns.com </a> <span class="divider"></span> <a href="https://wa.me/918075528937" target="_blank"> <i class="fab fa-whatsapp"></i> 080755 28937 </a> <a href="https://wa.me/919074852370" target="_blank"> <i class="fab fa-whatsapp"></i> 9074852370 </a> <a href="https://wa.me/918891357618" target="_blank"> <i class="fab fa-whatsapp"></i> 8891357618 </a> </div> <style> .header-top-left a { color: #fff; font-weight: 500; text-decoration: none; padding-right: 6px; } </style> <!-- RIGHT --> <div class="header-top-right"> <a href="https://www.facebook.com/roomgeardesigns/" target="_blank"><i class="fab fa-facebook-f"></i></a> <a href="https://www.instagram.com/roomgear_designs/?hl=en" target="_blank"><i class="fab fa-instagram"></i></a> </div> </div> </div> </div> <!-- ===== MAIN HEADER (LOGO + NAV) ===== --> <div class="header-main"> <div class="container"> <div class="logo-menu-wrap d-flex justify-content-between align-items-center w-100"> <!-- LOGO --> <div class="logo"> <h1 class="mb-0"> <a href="/"> <img class="img-fluid default-logo" src="<?php echo e(asset('assets/images/logo.png')); ?>" alt="Logo"> <img class="img-fluid hover-logo" src="<?php echo e(asset('assets/images/logo.png')); ?>" alt="Hover Logo"> </a> </h1> </div> <!-- NAVIGATION --> <nav class="d-flex align-items-center"> <div class="nav-left"> <ul class="list-unstyled d-inline-flex mb-0"> <li><a href="/"><b>Home</b></a></li> <li><a href="/about"><b>About</b></a></li> <li class="menu-item-has-children"> <a href="javascript:void(0);" title=""> <b>Products</b> </a> <ul class="mb-0 list-unstyled position-absolute dropdown-two-col"> <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <a href="<?php echo e(route('products', ['category' => $category->id])); ?>"> <span><?php echo e($category->productcategory); ?></span> </a> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </li> <style> .dropdown-two-col { column-count: 2; /* split into 2 columns */ column-gap: 10px; /* space between columns */ } </style> <li><a href="/projects"><b>Projects</b></a></li> <li><a href="/contact"><b>Contact</b></a></li> </ul> </div> <div class="nav-right desktop-only"> <a href="/contact" class="custom-btn">Customize Your Requirements</a> </div> <div class="nav-right mobile-only"> <a class="res-menu-btn" href="javascript:void(0);"> <i class="fas fa-align-justify"></i> </a> </div> </nav> </div> </div> </div> </header> <style> /* ================= HEADER TOP ================= */ .header-top { background: #dd7834; color: #fff; font-size: 13px; } .header-top-inner { height: 42px; display: flex; justify-content: space-between; align-items: center; } .header-top-left a { color: #fff; font-weight: 500; text-decoration: none; } .header-top-left i { margin-right: 6px; } .divider { display: inline-block; width: 1px; height: 14px; background: rgba(255, 255, 255, 0.4); margin: 0 12px; } .header-top-right a { color: #fff; margin-left: 14px; font-size: 13px; transition: 0.3s; } .header-top-right a:hover { opacity: 0.7; transform: translateY(-2px); } /* ================= MAIN HEADER ================= */ .header-main { background: #fff; } /* ================= BUTTON ================= */ .custom-btn { padding: 6px 12px; background: #000; color: #fff; border-radius: 30px; font-size: 12px; font-weight: 600; line-height: 1.2; text-decoration: none; margin-left: 10px; transition: all 0.25s ease; white-space: nowrap; /* forces single line */ } .custom-btn:hover, .custom-btn:focus { background: #dd7834; color: #fff; /* ORANGE TEXT ON HOVER */ text-decoration: none; /* prevents blue underline */ } /* ================= RESPONSIVE ================= */ .desktop-only { display: block; } .mobile-only { display: none; } @media (max-width: 991px) { .header-top, .desktop-only { display: none !important; } .mobile-only { display: block; } } /* Hide top header when scrolling */ .header-top.hide-on-scroll { display: none; } </style> <script> const headerTop = document.querySelector('.header-top'); window.addEventListener('scroll', function() { if (window.scrollY > 50) { headerTop.classList.add('hide-on-scroll'); } else { headerTop.classList.remove('hide-on-scroll'); } }); </script> <!-- Header --> <div class="header-search d-flex flex-wrap align-items-center position-fixed"> <span class="search-close-btn position-absolute"><i class="fas fa-times"></i></span> <form class="w-100 position-relative"> <button type="submit"><i class="icon-search"></i></button> <input type="text" placeholder="Search"> </form> </div><!-- Header Search --> <div class="responsive-menu position-fixed w-100"> <span class="menu-close"><i class="fas fa-times"></i></span> <ul class="mb-0 list-unstyled w-100"> <li><a href="/" title=""><span>Home</span></a></li> <li><a href="/about" title=""><span>About</span></a></li> <li class="menu-item-has-children"><a href="javascript:void(0);" title=""><span>Products</span></a> <ul class="mb-0 list-unstyled w-100"> <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <a href="<?php echo e(route('products', ['category' => $category->id])); ?>"> <span><?php echo e($category->productcategory); ?></span> </a> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </li> <li><a href="/projects" title=""><span>Projects</span></a></li> <li><a href="/contact" title=""><span>Contact</span></a></li> </ul> <div class="scl-links v2 d-flex flex-wrap w-100"> <a href="https://www.facebook.com/roomgeardesigns/" title="Facebook" target="_blank"><i class="fab fa-facebook-f"></i></a> <a href="https://www.instagram.com/roomgear_designs/?hl=en" title="Instagram" target="_blank"><i class="fab fa-instagram"></i></a> </div> </div><!-- Responsive Menu --><?php /**PATH D:\work\FinalCompressFile\roomgear\resources\views/layouts/uheader.blade.php ENDPATH**/ ?>