<?php $__env->startSection('banner'); ?>
	<?php echo $__env->make('sections.banner-sm', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('contents'); ?>
	<section id="standard-content" class="event-details">
		<div class="container">

			<div class="container-wrapper">
				<div class="col-md-8">
					<h3 class="heading">What to do next?</h3>
					<ul>
						<li>Check your Email</li>
						<li>Print the ticket</li>
						<li>Bring it on the event</li>
					</ul>
				</div>
				<div class="col-md-4">
					<h3 class="heading">Options</h3>
					<ul>
						<li><a href="">Order History</a></li>
						<li><a href="">Preferences</a></li>
					</ul>
				</div>
				<div class="clearfix"></div>
			</div>
		</div>
	</section>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('widgets'); ?>
	<section id="latest-events">
		<div class="container">
			<div class="col-md-12 container-wrapper">
				<h2 class="section-title">Other Events You May Like</h2>
				<p class="section-subtitle">Short subtitle here</p>

				<?php foreach($upcomingevents as $ev): ?>
					<div class="col-md-4">
						<div class="latest-event-item">
							<a href="">
								<img src="<?php echo e(asset('/uploads/events/md')); ?>/<?php echo e($ev->image); ?>" class="img-responsive">
								<h3 class="title">Event One Title</h3>
								<p class="location"><i class="fa fa-map-marker"></i> Phoenix</p>

								<div class="info">
									<ul class="info-date"> 
										<li><i class="fa fa-calendar yellow"></i> 12/01/2016</li>
									</ul>
									<ul class="info-views">
										<li><i class="fa fa-heart orange"></i> 0</li>
										<li><i class="fa fa-eye orange"></i> 1296</li>
									</ul>
									<div class="clearfix"></div>
								</div>
							</a>
						</div>
					</div>
				<?php endforeach; ?>
			</div>
		</div>
	</section>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('script'); ?>
	
<?php $__env->stopSection(); ?>
<?php echo $__env->make('masters.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>