<?php $__env->startSection("content"); ?>
<?php echo $__env->make("reportHeader", array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<div id="summary">
	<table class="table table-bordered">
		<tbody>
			<tr>
				<th colspan="3"><?php echo trans('messages.summary'); ?></th>
				<tr>
					<th>SN</th>
					<th>Folio No.</th>
					<th>Item</th>
					<th>Quantity</th>
					<th>Requested By</th>
					<th>Request Date</th>

				</tr>
			<?php foreach($inhouse as $test): ?>
			<tr>
				<td><?php echo $test->id; ?></td>
				<td><?php echo $test->folio_number; ?></td>
				<td><?php echo $test->commodity->name; ?></td>
				<td><?php echo $test->quantity; ?></td>
				<td><?php echo $test->requested_by; ?></td>
				<td>
			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>
<?php $__env->stopSection(); ?>

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