<?php $__env->startSection('content'); ?>

  <div id="content-header">
    <div id="breadcrumb"> <a href="<?php echo e(url('/admin')); ?>" title="Go to Home" class="tip-bottom"><i class="icon-home"></i> Home</a> <a href="<?php echo e(url('/admin/homepage')); ?>">Homepage Content Management</a> <a href="javascript:void(0);" class="current">Details</a> </div>
  </div>
  
  <div class="container-fluid">
    <div class="row-fluid">
      <div class="span12">
	  	
			<div class="title_btn">
				<h2>Details</h2>
			</div>
			<div class="clear"></div>
			
			<div class="tab_name">
				<a href="<?php echo e(URL('/admin/homepage/index/Banner')); ?>" class="<?php echo isset($type) && $type=='Banner' ? 'active' : '';?>">Banner</a>
				<a href="<?php echo e(URL('/admin/homepage/index/Highlight')); ?>" class="<?php echo isset($type) && $type=='Highlight' ? 'active' : '';?>">Highlights</a>
				<a href="<?php echo e(URL('/admin/homepage/index/Content')); ?>" class="<?php echo isset($type) && $type=='Content' ? 'active' : '';?>">Content</a>
			</div><!--tab_name-->
			<div class="clear"></div>

            <table class="table table-bordered table-striped">
              <thead>
                <tr>
                  <th width="20%">Labels</th>
                  <th>Contents</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td><span class="label">ID</span></td>
                  <td><?php echo e($object->id); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Title</span></td>
                  <td><?php echo e($object->title); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Banner</span></td>
                  <td><?php if( isset($object->media_path) && $object->media_path!="" ):?><img src="<?php echo get_ext_path_advanced($object->media_path, $object->media_id, 's');?>" style="max-width:400px;" /><?php endif;?></td>
                </tr>
				<tr>
                  <td><span class="label">Content</span></td>
                  <td><?php echo isset($object->content) ? $object->content : NULL?></td>
                </tr>
                <tr>
                  <td><span class="label">Link</span></td>
                  <td><?php echo e($object->link); ?></td>
                </tr>
				
				<tr>
                  <td><span class="label">Sort</span></td>
                  <td><?php echo e($object->sort); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Position</span></td>
                  <td><?php echo e($object->position); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Date</span></td>
                  <td><?php echo e($object->date); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Created At</span></td>
                  <td><?php echo e($object->created_at); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Modified At</span></td>
                  <td><?php echo e($object->updated_at); ?></td>
                </tr>

              </tbody>
            </table>
            
       
       
       </div>
    </div>
  </div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>