<?php $__env->startSection('content'); ?>
<div class="content" id="content">

  <div class="overlay"></div>     
  
<?php echo $__env->make('admin.includes.topbar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
  
  <!-- main content -->
  <div class="main-content">


    <!-- panel -->

    <div class="panel panel-piluku">
      <div class="panel-heading">
        <h3 class="panel-title">
          Room Management - <?php echo $hotel->name; ?>

          <span class="panel-options">
            <a href="#" class="panel-refresh">
              <i class="icon ti-reload"></i>
            </a>
            <a href="#" class="panel-minimize">
              <i class="icon ti-angle-up"></i>
            </a>
            <a href="#" class="panel-close">
              <i class="icon ti-close"></i>
            </a>
          </span>
        </h3>
      </div>
<?php if(Session::has('error')): ?>
<div class="alert bg-danger text-white">
              <?php echo Session::get('success'); ?>

            </div>

<?php endif; ?>

<?php if(Session::has('success')): ?>
<div class="alert bg-success text-white">
              <?php echo Session::get('success'); ?>

            </div>

<?php endif; ?>




      <div class="panel-body">

          <?php echo Form::open(array('route' => 'insertroom', 'id' => 'form-a', 'class' => 'form form-horizontal')); ?>
        <input type="hidden" id="roomid" value="<?php echo $hotelid; ?>" name="hotelid" class="form-control" data-required="true" >
          <div class="form-group">
            <label class="col-sm-2 control-label" for="inline-suggestions">Room Name:</label>
            <div class="col-sm-8">
              <input name="roomname" type="text"  required class="form-control"  />
            </div>
          </div>

          <div class="form-group">
            <label class="col-sm-2 control-label" for="inline-suggestions">Max Adults:</label>
            <div class="col-sm-8">
              <input name="roommaxadults" type="text"  required class="form-control"  />
            </div>
          </div>

          <div class="form-group">
            <label class="col-sm-2 control-label">Facilities:</label>
            <div class="col-md-8">
              <!-- xmulti select  -->
                <select class="multi form-control" name="roomfacilities[]" multiple>
                  <?php foreach($facilities as $facility): ?>
                  <option value='<?php echo $facility->id; ?>'><?php echo $facility->name; ?></option>
                  <?php endforeach; ?>
                </select>
                <!-- xmulti select  -->

            </div>
          </div>

          <div class="form-group">
            <label class="col-sm-2 control-label">Categories:</label>
            <div class="col-md-8">
              <!-- xmulti select  -->
                <select id='hotelcategories' name="roomcategories[]" multiple='multiple'>
                <?php foreach($categories as $category): ?>
                  <option value='<?php echo $category->id; ?>'><?php echo $category->name; ?></option>
                <?php endforeach; ?>
                </select>
                <!-- xmulti select  -->

            </div>
          </div>


          <div class="form-group">
            <label class="col-sm-2 control-label">Content:</label>
            <div class="col-md-10">
                <textarea id="hotelcontent" name="roomcontent"></textarea>
            </div>
          
          </div>

          





          
      <div class="form-group">
        <div class="col-sm-offset-2 col-sm-8">
          <input type="submit" class="btn btn-success">
          <input type="reset" class="btn btn-danger">
        </div>
      </div>
    </form>
  </div>
</div>
<!-- /panel -->

<!-- panel -->
        <div class="panel panel-piluku panel-users">
          <div class="panel-heading">
            <h3 class="panel-title">
              List of Rooms
              <span class="panel-options">
                <a href="#" class="panel-refresh">
                  <i class="icon ti-reload"></i> 
                </a>
                <a href="#" class="panel-minimize">
                  <i class="icon ti-angle-up"></i> 
                </a>
                <a href="#" class="panel-close">
                  <i class="icon ti-close"></i> 
                </a>
              </span>
            </h3>
          </div>
          <div class="panel-body nopadding">
            <div class="table-responsive">
              <table class="table table-hover">
                <thead>
                  <tr>
                    <th>&nbsp;</th> 
                            <th>Name</th>
                            <th>Max Adults</th>
                            <th>Max Adults</th>
                    <th>&nbsp;</th>
                    <th>&nbsp;</th>
                    <th>&nbsp;</th>
                    <th>&nbsp;</th>
                  
                  </tr>
                </thead>
                <tbody>
                     <?php foreach($data as $room): ?>
                  <tr class="table-row">
                    <td>
                      <img src="<?php echo URL('/media/uploads/images/hotel/size/263x197/'.AppHelper::roomImages($room->id).''); ?>" alt="user">
                    </td>
                            <td><?php echo $room->name; ?></td>
                            <td>2</td>
                            <td><?php echo $room->max_adults; ?></td>
                    <td>
                      <a href="<?php echo URL('admin/editroom'); ?>/<?php echo $room->id; ?>"class="btn btn-green"><i class="ion ion-edit"></i></a>

                    </td>
                    <td>
                      <a href="<?php echo URL('/admin/hotels/rooms/rates'); ?>/<?php echo $room->id; ?>" class="btn btn-red">Rates</a>
                    </td>
                    <td>
                      <a href="<?php echo URL('admin/room/images'); ?>/<?php echo $room->id; ?>" class="btn btn-green">Images</a>
                    </td>
                    <td>
                      <a href="<?php echo URL('admin/deleteroom'); ?>/<?php echo $room->id; ?>" class="btn btn-red"><i class="ion ion-ios-trash-outline"></i></a>
                    </td>
                      
                  </tr>
                  <?php endforeach; ?>
                  
                </tbody>
              </table>
            </div>
          </div>
        </div>
        <!-- /panel -->



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