Server IP : 66.29.132.124 / Your IP : 3.147.86.104 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/storage/framework/views/ |
Upload File : |
<div class="panel"> <div class="panel-title"><strong><?php echo e(__("Tour Locations")); ?></strong></div> <div class="panel-body"> <?php if(is_default_lang()): ?> <div class="form-group"> <label class="control-label"><?php echo e(__("Location")); ?></label> <?php if(!empty($is_smart_search)): ?> <div class="form-group-smart-search"> <div class="form-content"> <?php $location_name = ""; $list_json = []; $traverse = function ($locations, $prefix = '') use (&$traverse, &$list_json , &$location_name,$row) { foreach ($locations as $location) { $translate = $location->translateOrOrigin(app()->getLocale()); if ($row->location_id == $location->id){ $location_name = $translate->name; } $list_json[] = [ 'id' => $location->id, 'title' => $prefix . ' ' . $translate->name, ]; $traverse($location->children, $prefix . '-'); } }; $traverse($tour_location); ?> <div class="smart-search"> <input type="text" class="smart-search-location parent_text form-control" placeholder="<?php echo e(__("-- Please Select --")); ?>" value="<?php echo e($location_name); ?>" data-onLoad="<?php echo e(__("Loading...")); ?>" data-default="<?php echo e(json_encode($list_json)); ?>"> <input type="hidden" class="child_id" name="location_id" value="<?php echo e($row->location_id ?? Request::query('location_id')); ?>"> </div> </div> </div> <?php else: ?> <div class=""> <select name="location_id" class="form-control"> <option value=""><?php echo e(__("-- Please Select --")); ?></option> <?php $traverse = function ($locations, $prefix = '') use (&$traverse, $row) { foreach ($locations as $location) { $selected = ''; if ($row->location_id == $location->id) $selected = 'selected'; printf("<option value='%s' %s>%s</option>", $location->id, $selected, $prefix . ' ' . $location->name); $traverse($location->children, $prefix . '-'); } }; $traverse($tour_location); ?> </select> </div> <?php endif; ?> </div> <?php endif; ?> <div class="form-group"> <label class="control-label"><?php echo e(__("Real tour address")); ?></label> <input type="text" name="address" id="customPlaceAddress" class="form-control" placeholder="<?php echo e(__("Real tour address")); ?>" value="<?php echo e($translation->address); ?>"> </div> <?php if(is_default_lang()): ?> <div class="form-group"> <label class="control-label"><?php echo e(__("The geographic coordinate")); ?></label> <div class="control-map-group"> <div id="map_content"></div> <input type="text" placeholder="<?php echo e(__("Search by name...")); ?>" class="bravo_searchbox form-control" autocomplete="off" onkeydown="return event.key !== 'Enter';"> <div class="g-control"> <div class="form-group"> <label><?php echo e(__("Map Latitude")); ?>:</label> <input type="text" name="map_lat" class="form-control" value="<?php echo e($row->map_lat); ?>" onkeydown="return event.key !== 'Enter';"> </div> <div class="form-group"> <label><?php echo e(__("Map Longitude")); ?>:</label> <input type="text" name="map_lng" class="form-control" value="<?php echo e($row->map_lng); ?>" onkeydown="return event.key !== 'Enter';"> </div> <div class="form-group"> <label><?php echo e(__("Map Zoom")); ?>:</label> <input type="text" name="map_zoom" class="form-control" value="<?php echo e($row->map_zoom ?? "8"); ?>" onkeydown="return event.key !== 'Enter';"> </div> </div> </div> </div> <?php endif; ?> </div> </div><?php /**PATH /home/book24/public_html/modules/Tour/Views/admin/tour/tour-location.blade.php ENDPATH**/ ?>