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

<h3>Sale Report</h3>
<hr>

<div class="row">
	<div class="col-md-12">
		<table>
			<thead>
				<th></th>
			</thead>
			<tbody>
				<?php foreach($orders as $order): ?>
				<tr>
					<td></td>
				</tr>
				<?php endforeach; ?>
			</tbody>
		</table>
	</div>
</div>

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