home
/
zktecojo
/
public_html
/
app
/
storage
/
views
/
test
➕ New
📤 Upload
✎ Editing:
d58f8946b19599129a97a01319430469
← Back
<?php $__env->startSection('styles'); ?> @parent <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="main-block"> <?php if(!empty($bannerSliders)) { ?> <div class="sliderWrap"> <ul id="cbp-bislideshow" class="cbp-bislideshow"> <?php foreach( $bannerSliders as $banner ) { ?> <li> <img src="<?php echo asset('assets/uploads/banners/recomended/'.$banner->banner_image_name); ?>" /> <div class="caption"> <div class="container"> <h1><?php echo $banner->banner_title; ?><br> <span><?php echo $banner->banner_short_text; ?></span> </h1> </div> </div> </li> <?php } ?> </ul> <div id="cbp-bicontrols" class="cbp-bicontrols"> <span class="cbp-biprev"></span> <span class="cbp-binext"></span> </div> </div> <?php } ?> </div> <div class="clearfix"></div> <div class="midle"> <div class="sect2"> <div class="container"> <div class="row"> <?php if(!empty( $featuredSections )) { ?> <?php foreach($featuredSections as $fSections) { ?> <div class="col-sm-4 service-block"> <a href="<?php echo asset('products/'.$fSections->pc_alias); ?>" > <div class="hd-main"> <div class="overTop"> <img src="<?php echo asset('assets/uploads/product_category/recomended/'.$fSections->pc_image); ?>" > <div class="clearfix"></div> </div> <div class="sect-hd"><?php echo $fSections->pc_name; ?></div> </div> <div class="listService"> <img src="<?php echo asset('assets/uploads/product_category/recomended/'.$fSections->pc_image); ?>" > <div class="listHover"> <p><?php echo $fSections->pc_description; ?></p> <span class="readmore"> FIND MORE </span> </div> </div> </a> </div> <?php } ?> <?php } ?> </div> </div> </div> <?php if(!empty($homePageContent)) { ?> <section class="about-block"> <div class="container"> <h1><?php echo $homePageContent->page_name; ?></h1> <p><?php echo $homePageContent->page_content1; ?></p> <a href="<?php echo $homePageContent->menu_alias; ?>" class="read"> READ MORE</a> </div> </section> <?php } ?> <section class="section-service"> <div class="container"> <?php if(!empty( $footerSections ) ) { ?> <div class="row"> <?php foreach($footerSections as $footSections) { ?> <div class="col-sm-3"> <a href="<?php echo asset('/products/'.$footSections->pc_alias); ?>"> <div class="outer-block"> <div class="block"><img src="<?php echo asset('assets/uploads/product_category_icon/'.$footSections->pc_icon_image); ?>" > <div class="flip-img"><img src="<?php echo asset('assets/uploads/product_category/'.$footSections->pc_image); ?>" ></div> </div> <h2><?php echo $footSections->pc_name; ?></h2> </div> </a> </div> <?php } ?> </div> <?php } ?> </div> </section> <div class="map-block"> <div class="form-block"> <h2>Make an Enquiry</h2> <?php echo Form::open(array('url' => 'contact-us/','class'=>'form-main')); ?> <div class="row"> <div class="col-sm-6"> <div class="form-group"> <input type="text" class="form-control" id="name" name="name" placeholder="Company Name" value=""> </div> </div> <div class="col-sm-6"> <div class="form-group"> <input type="email" class="form-control" id="email" name="email" placeholder="Your Email" value=""> </div> </div> </div> <div class="form-group"> <input type="text" class="form-control" id="inputName" placeholder="Enter Phone Number"> </div> <div class="form-group"> <textarea placeholder="Your Message" class="form-control" rows="4" name="usermessage"></textarea> </div> <div class="form-group"> <div class="captcha"> <div class="code"><img id="captchaImage" src="<?php echo asset('/captcha')?>" width="120"/></div> <div class="refresh"> <i class="fa fa-refresh"></i></div> <div class="input1"><input type="text" class="form-control" id="captcha" name="captcha" placeholder="Enter Captcha Here" ></div> </div> <input id="submit" name="submit" type="submit" value="Send" class="btn btn-primary"> </div> </form> </div> <div id="map_canvas" style='height:442px;width:100%;'></div> </div> <div class="clearfix"></div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> @parent <script src="<?php echo asset('assets/js/jquery.imagesloaded.min.js'); ?>"></script> <script src="<?php echo asset('assets/js/cbpBGSlideshow.js'); ?>"></script> <script src="<?php echo asset('assets/js/mainslider.js'); ?>"></script> <?php if(!empty($websiteSettings->map_latitude) && !empty($websiteSettings->map_longitude) ) { ?> <script src="http://maps.google.com/maps/api/js?sensor=false"></script> <?php } ?> <script type="text/javascript"> <?php if(!empty($websiteSettings->map_latitude) && !empty($websiteSettings->map_longitude) ) { ?> var streetViewURL = 'https://www.google.ae/maps/place/Al+Mutlaq+Technological+Establishment/@25.15142,55.226428,3a,75y,153.33h,100.26t/data=!3m4!1e1!3m2!1skuL66b4vaDEhGPmDRrrrDQ!2e0!4m2!3m1!1s0x3e5f69878de11055:0xdffbcca43d4111ed'; var myLatlng = new google.maps.LatLng(<?php echo $websiteSettings->map_latitude; ?>, <?php echo $websiteSettings->map_longitude; ?>); var infowindow = new google.maps.InfoWindow(); var map; var address = ' <address><h4><?php echo $contactUs->contactus_address1; ?></h4><p><?php echo $contactUs->contactus_address2; ?></p><br/> <span style="color:blue">Click on the marker for street view</span>'; var mapOptions = { center: new google.maps.LatLng(<?php echo $websiteSettings->map_latitude; ?>, <?php echo $websiteSettings->map_longitude; ?>), zoom: 19 }; map = new google.maps.Map(document.getElementById("map_canvas"),mapOptions); var marker = new google.maps.Marker({ position: myLatlng, map: map, title: '<?php echo $websiteSettings->sitename; ?>' }); google.maps.event.addListener(marker, 'mouseover', function() { infowindow.setContent(address); // infowindow.setPosition(marker.position); infowindow.open(map,marker) }); google.maps.event.addListener(marker, 'click', function() { window.open(streetViewURL,'_blank'); }); <?php } ?> $(document).ready(function() { $('.fa-refresh').on('click',function(e) { e.preventDefault(); // console.log('ad'); d = new Date(); $("#captchaImage").attr("src", "<?php echo asset('/captcha')?>?"+d.getTime()); }); var height = $(window).height(); $(".hd-main").hover( function () { $(this).parent().addClass("featuredBlockHover"); }, function () { $(this).parent().removeClass("featuredBlockHover"); } ); $(".listService").hover( function () { $(this).parent().addClass("featuredBlockHover"); }, function () { $(this).parent().removeClass("featuredBlockHover"); } ); $('.main-block, .sliderWrap,.cbp-bislideshow').css({ 'height' : height, }); var t = $('#cbp-bislideshow').mainSlider({controls:'#cbp-bicontrols',interval:4000,autoPlay:true }); }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.frontend.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel