관리-도구
편집 파일: d27599ca89b39c91d6e11057457c785cde9e03a2.php
<?php $content = content('contact.content'); $elements = element('footer.element'); ?> <header id="header"> <div class="header-top-area"> <div class="container"> <div class="row"> <div class="col-lg-8"> <ul class="header-top-info-list"> <li><i class="fas fa-phone-alt"></i><?php echo e($content->data->phone); ?></li> <li><i class="fas fa-map-marker-alt"></i> <span><?php echo e($content->data->location); ?></span></li> <li><i class="fas fa-envelope"></i> <?php echo e($content->data->email); ?></li> </ul> </div> <div class="col-lg-4"> <div class="header-top-right justify-content-lg-end"> <span class="text-white"><?php echo e(__('Follow Us')); ?>:</span> <ul> <?php $__currentLoopData = $elements; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $element): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><a href="<?php echo e($element->data->social_link); ?>" aria-label="Social media link"><i class="<?php echo e($element->data->social_icon); ?>"></i></a></li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> </div> </div> </div> </div> <div class="header-menu-area"> <div class="container d-flex align-items-center justify-content-lg-between"> <div class="logo me-auto me-lg-0"><a href="<?php echo e(route('home')); ?>"> <span> <img class="img-fluid rounded sm-device-img text-align" src="<?php echo e(getFile('logo', $general->logo)); ?>" alt="logo"> </span> </a> </div> <nav id="navbar" class="navbar order-last order-lg-0"> <ul> <?php $__currentLoopData = getMenus("headers"); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $menu): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><a class="nav-link" href="<?php echo e(route('pages', $menu->page->slug)); ?>"><?php echo e(__($menu->page->name)); ?></a> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <li class="d-md-block d-lg-none d-block "> <?php if(Auth::user()): ?> <a class="nav-link" href="<?php echo e(route('user.dashboard')); ?>"><?php echo e(__('Dashboard')); ?></a> <?php else: ?> <a class="nav-link" href="<?php echo e(route('user.login')); ?>"><?php echo e(__('Login')); ?></a> <?php endif; ?> </li> <li class=" d-sm-block d-md-block d-lg-none"> <select class="custom-select-form selectric ms-3 rounded changeLang nav-link scrollto" aria-label="Default select example"> <?php $__currentLoopData = $language_top; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $top): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($top->short_code); ?>" data-action="<?php echo e(route('changeLang', $top->short_code)); ?>" <?php echo e(languageSelection($top->short_code)); ?>> <?php echo e(__(ucwords($top->name))); ?> </option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </li> </ul> <i class="bi bi-list mobile-nav-toggle"></i> </nav> <div class="header-right align-items-center d-none d-xl-flex"> <div class="dropdown"> <button class="text-white bg-transparent border-0" type="button" data-bs-toggle="dropdown" aria-expanded="false"> <i class="fas fa-globe"></i> <span class="ms-1"><?php echo e(__(ucwords(selectedLanguage()->name))); ?></span> </button> <ul class="dropdown-menu dropdown-menu-end"> <?php $__currentLoopData = $language_top; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $top): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><a class="dropdown-item <?php echo e(languageSelection($top->short_code, 'active')); ?>" href="<?php echo e(route('changeLang', $top->short_code)); ?>"><?php echo e(__(ucwords($top->name))); ?></a> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <?php if(Auth::user()): ?> <a href="<?php echo e(route('user.dashboard')); ?>" class="cmn-btn btn-md ms-3"><?php echo e(__('Dashboard')); ?></a> <?php else: ?> <a href="<?php echo e(route('user.login')); ?>" class="cmn-btn-outline-white btn-md ms-3"><?php echo e(__('Login')); ?></a> <a href="<?php echo e(route('user.register')); ?>" class="cmn-btn btn-md ms-3"><?php echo e(__('Signup')); ?></a> <?php endif; ?> </div> </div> </div> </header> <?php /**PATH /home/inprosysltd/public_html/cityscape.inprosysltd.com/core/resources/views/frontend/layout/header.blade.php ENDPATH**/ ?>