<?php $__env->startSection("content"); ?>
<div>
	<ol class="breadcrumb">
	  <li><a href="<?php echo e(URL::route('user.home')); ?>"><?php echo trans('messages.home'); ?></a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Kush</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Lena</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">M3</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Meghan</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Samuel</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Sula</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Tadeo</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Victor</a></li>
	  <li class="active">Jeff</li>
	</ol>
</div>
<?php if(Session::has('message')): ?>
	<div class="alert alert-info"><?php echo trans(Session::get('message')); ?></div>
<?php endif; ?>
<img src = "<?php echo asset('i/report.png'); ?>" alt="report.png" width=80px>
<img src = "<?php echo asset('i/report.png'); ?>" alt="report.png" width=80px>
<br><br><br>
Diagnostic contribution:: 90%
Equipment Utilizaition:: 130%
Diagnostic contribution
<!-- <li>Machine Utilization & Consumption Report <br></li> -->

<div  class="panel panel-default row" style="width:97%">
	<div class="panel-heading ">
	<img src = "<?php echo asset('i/abbott.png'); ?>" alt="abbott.png" width=70px> <br><span class="nav_title"> Jeff <br></span


		<div class="panel-btn">
			<a class="btn btn-sm btn-info" href="<?php echo URL::route('jeff.create'); ?>">
				<span class="glyphicon glyphicon-plus-sign"></span> New Run	</a>
		</div>

	<div class="panel-body">
	<div class="table-responsive">
  	<table class="table table-striped table-bordered search-table">
			<thead>
				<tr>
					<th>#</th>
					<th>Amplification <br> Reagent Barcode</th>
					 <th>Control Details</th>
					<th>Calibrator Details</th>
					<th>Reagent Details</th>
					<th>Total No. of <br> Samples Tested</th>
					<th>Failed Runs</th>
					<th>Passed Runs</th>
					<th>Dummy Runs</th>
					<th class="text-center"><?php echo trans('messages.actions'); ?></th>
				</tr>
			</thead>
			<tbody>
				 <?php $row=1; ?>
			<?php foreach($jeff as $value): ?>
				<tr>
					<th><?php echo $row; ?></th>
          <td><?php echo $value->amplification_barcode; ?></td>
          <td><?php echo $value->control_lot_number; ?></td>
          <td><?php echo $value->calibrator_lot_number; ?></td>
          <td><?php echo $value->calibrator_expiry; ?></td>
          <td><?php echo $value->number_of_samples; ?></td>
          <td><?php echo $value->failed_runs; ?></td>
          <td><?php echo $value->failed_runs; ?></td>
          <td><?php echo $value->failed_runs; ?></td>
    			<td>
						<!-- edit this commodity (uses the edit method found at GET /inventory/{id}/edit -->
						<a class="btn btn-sm btn-info" href="<?php echo URL::route('commodity.edit', array($value->id)); ?>" >
								<span class="glyphicon glyphicon-edit"></span>
								<?php echo trans('messages.edit'); ?>

						</a>
							<!-- delete this commodity (uses the delete method found at GET /inventory/{id}/delete -->
						 <button class="btn btn-sm btn-danger delete-item-link"
								data-toggle="modal" data-target=".confirm-delete-modal"
								data-id="<?php echo URL::route('commodity.delete', array($value->id)); ?>">
								<span class="glyphicon glyphicon-trash"></span>
								<?php echo trans('messages.delete'); ?>

						</button>
					</td>
				</tr>
				<?php $row++; ?>
				<?php endforeach; ?>
			</tbody>
		</table>
		<?php Session::put('SOURCE_URL', URL::full());?>
	</div>
</div>
</div>
<?php $__env->stopSection(); ?>

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