<?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/report')); ?>">Report 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/reportType')); ?>" class="">Report Type</a>
				<a href="<?php echo e(URL('/admin/reportCategory')); ?>" class="">Report Category</a>
				<a href="<?php echo e(URL('/admin/report')); ?>" class="active">Report</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">Type</span></td>
                  <td><?php echo e($object->getTypeTitle()); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Category</span></td>
                  <td><?php echo e($object->getCategoryTitle()); ?></td>
                </tr>
                <tr>
                  <td><span class="label">Title</span></td>
                  <td><?php echo e($object->title); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Sort</span></td>
                  <td><?php echo e($object->sort); ?></td>
                </tr>
				<tr>
                  <td><span class="label">Status</span></td>
                  <td><?php echo e($object->status); ?></td>
                </tr>
				
				<tr>
                  <td><span class="label">Quarter 1</span></td>
                  <td><?php if( isset($object->quarter_1_path) && $object->quarter_1_path!='' ):?><a href="<?php echo get_ext_path($object->quarter_1_path);?>" target="_blank"><?php echo e($object->quarter_1_path); ?></a><?php endif;?></td>
                </tr>
				<tr>
                  <td><span class="label">Quarter 2</span></td>
                  <td><?php if( isset($object->quarter_2_path) && $object->quarter_2_path!='' ):?><a href="<?php echo get_ext_path($object->quarter_2_path);?>" target="_blank"><?php echo e($object->quarter_2_path); ?></a><?php endif;?></td>
                </tr>
				<tr>
                  <td><span class="label">Quarter 3</span></td>
                  <td><?php if( isset($object->quarter_3_path) && $object->quarter_3_path!='' ):?><a href="<?php echo get_ext_path($object->quarter_3_path);?>" target="_blank"><?php echo e($object->quarter_3_path); ?></a><?php endif;?></td>
                </tr>
				<tr>
                  <td><span class="label">Quarter 4</span></td>
                  <td><?php if( isset($object->quarter_4_path) && $object->quarter_4_path!='' ):?><a href="<?php echo get_ext_path($object->quarter_4_path);?>" target="_blank"><?php echo e($object->quarter_4_path); ?></a><?php endif;?></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(); ?>