<?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="product-details">
		<div class="container">

			<p id="breadcrumb">
			    <a href="<?php echo e(url('/page/shop')); ?>"><i class="fa fa-shopping-cart"></i></a>
			   <?php echo e($bread); ?>

			</p>

			<div class="container-wrapper">
				<div class="col-md-4">
					<img src="<?php echo e(asset('/uploads/products/md')); ?>/<?php echo e($product->image); ?>" class="event-image thumbnail img-responsive">

					<div class="well">
						<div class="col-xs-6"><div class="amount-text">Amount</div></div>
						<div class="col-xs-6"><div class="amount-value">: &dollar;<?php echo e($product->amount); ?></div></div>

						<div class="clearfix"></div>
					</div>
				</div>

				<div class="col-md-8">
					<div class="details">
						<h2 class="heading"><?php echo e($product->product_name); ?></h2>

						<?php echo $product->description; ?>

					</div>
					<div class="action">
						<a href="<?php echo e(url('/product')); ?>/<?php echo e($product->id); ?>/book" class="btn btn-primary addToCart" data-id="<?php echo e($product->id); ?>">Add To Cart</a>
					</div>
				</div>
				
				<div class="clearfix"></div>
			</div>
		</div>
	</section>

	<form action=""><input name="token" type="hidden" value="<?php echo e(csrf_token()); ?>"></form>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('script'); ?>
	<script type="text/javascript" src="<?php echo e(asset('/js/min/shop-min.js')); ?>"></script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('masters.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>