<?php $__env->startSection('content'); ?>   
<div class="page-title-container hidden-mobile">
            <div class="container">
                <div class="page-title pull-left">
 
                </div>
                <ul class="breadcrumbs pull-right">
                    <li><a href="#">HOME</a></li>
                    <li class="active"><?php echo $heading; ?></li>
                </ul>
            </div>
        </div>
        <section id="content" class="gray-area">

        <div class="container">
        
            <h1 style="text-align:center"><?php echo $heading; ?></h1>
                    <p style="font-size:18px;text-align:center">
                    <?php echo $seo_description; ?>

                    </p>


                        <div class="image-box suggestions">
                            <?php foreach($categories as $category): ?>
                              <div class="col-sm-2 col-md-2" style="padding-bottom:10px;">
                                <div class="box">
                                    <a href="<?php echo URL('special-offers/'); ?>/<?php echo $category->seo_slug; ?>">
                                        <img src="<?php echo URL('/media/uploads/images/hotel/size/340x340/'.$category->featured_image.''); ?>"  style="width: 100%;" alt="" />
                                    </a>
                                    <h4 class="caption"><a href="<?php echo URL('special-offers/'); ?>/<?php echo $category->seo_slug; ?>"><?php echo $category->name; ?></a></h4>
                                </div>
                            </div>
                            <?php endforeach; ?>
                               
                        </div>



          

        </div>

            <div class="container text-left shortcode">
                <div class="block">
                    <div class="row">
                        <div class="col-lg-3 pull-right">
                  
        
                            <div class="travelo-box">
                            <h4 class="box-title">CHECK OFFERS
                         </h4>


                            <div class="image-box style14">
                            <form action="<?php echo URL('checkin'); ?>" method="post">
                                 <div class="form-group row">
                 
                                        <div class="col-sm-12 col-md-12">
                                            <label>Arrival*</label>
                                            <div class="datepicker-wrap">
                                                    <input type="text" name="arrival" required class="input-text full-width" value="<?php echo Session::get('arrival'); ?>" placeholder="mm/dd/yy" />
                                            </div>
                                        </div>

                                        <div class="col-sm-12 col-md-12">
                                            <label>Departure*</label>
                                            <div class="datepicker-wrap">
                                                    <input type="text" name="departure" required class="input-text full-width" value="<?php echo Session::get('departure'); ?>" placeholder="mm/dd/yy" />
                                            </div>
                                        </div> 

                              </div>
                                <div class="form-group row">
                                    <div class="col-sm-12 col-md-12">
                                        <button type="submit" class="full-width btn-small animated" data-animation-type="bounce" data-animation-duration="1">CHECK</button>
                                    </div>
                                </div


                            </div>
                            </form>
                        </div>

  
  
                    </div>

                        </div>
                        <div class="col-lg-9 listing-style3 hotel">
                        <?php foreach($offers as $offer): ?>
                            <article class="box">

                                <figure class="col-sm-5 col-md-4">
                                    <a title="" href="<?php echo URL(AppHelper::config('offers_route').'/'.AppHelper::offercategoryslug($offer->id).''); ?>/<?php echo $offer->seo_slug; ?>"><img width="270" height="160" alt="" src="<?php echo URL('/media/uploads/images/hotel/size/270x160/'.$offer->featured_image.''); ?>"></a>
                                </figure>
                                <div class="details col-xs-12 col-sm-7 col-md-8">

                                    <div>
                                        <div>
                                            <h4 class="box-title"><?php echo $offer->name; ?>

                                            <p>
                                            <medium> <?php echo AppHelper::hotelname($offer->hotels_id); ?></medium></h4>
                                            </p>
                        
                                        </div>
                                        <div>
                                           

                                        </div>
                                    </div>
                                    <div>
                                    
                                        <?php echo $offer->seo_description; ?>



                              
                                        <div>

                                        <?php if($offer->price > 0): ?>
                                            <span class="price">$<?php echo $offer->price; ?></span>
                                        <?php else: ?>
                                         <span class="price"><small></small>&nbsp;</span> </span>

                                        <?php endif; ?>



                                            <a class="button btn-small green full-width text-center" style="min-width:160px; max-width:160px;" title="" href="<?php echo URL(AppHelper::config('offers_route').'/'.AppHelper::offercategoryslug($offer->id).''); ?>/<?php echo $offer->seo_slug; ?>">VIEW</a>
                                            <div style="text-align: center;">
                                        
                                            </div>
                                        </div>
                                    </div>

                                </div>
                            </article>
                        <?php endforeach; ?>
                           
                        </div>
                    </div>
                </div>


                
                
            </div>
        </section>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('front.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>