<?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 class="active">Supply Plan</li>
	</ol>
</div>
<?php if(Session::has('message')): ?>
<div class="alert alert-info"><?php echo trans(Session::get('message')); ?></div>
<?php endif; ?>
<div  class="panel panel-default row" style="width:97%">
	<div class="panel-heading ">
		VL / EID Stock Status Report<br>
		<div class="panel-btn">

			</a>
		</div>
	</div>
	<div class="panel-body">
		<div class="table-responsive">
			<table class="table table-striped table-bordered search-table">
				<thead>
					<tr>
						<th>#</th>
						<th>Item Description</th>
						<th>Stock On Hand</th>
						<th>Total Pipeline</th>
						<th>Months Of Stock</th>
					</tr>
				</thead>
				<tbody>
					<?php $row=1; ?>
					<?php foreach($stock as $value): ?>
					<tr>
						<th><?php echo $row; ?></th>
						<td>Cobas guy here</td>
						<td>3000</td>
						<td>50</td>
						<td>3</td>
	</tr>
		<?php $row++; ?>
		<?php endforeach; ?>
	</tbody>
</table>
</div>

<?php Session::put('SOURCE_URL', URL::full());?>
</div>
</div>
<?php $__env->stopSection(); ?>

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