<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>SMS App | Client Details</title>

    <style type="text/css">
	    body {
	    	padding-top: 70px;
	    }
	    .fa-1x {
	    	font-size: 16px !important;
	    	vertical-align: middle;
	    }
    </style>

	<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
	<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
	<?php echo $__env->make('_navbar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
	<div class="container"><br/><br/>
		<?php if(!empty($batches)): ?>
		<div class="row">
			<div class="col-sm-6">				<h4 class="text-center">Batch List</h4>				<hr>
				<table class="table table-striped datatable">
					<tr>
						<td>number</td>
					</tr>
					<?php foreach($batches as $batch): ?>
					<tr>
						<td><?php echo e($batch->mobile); ?></td>
					<tr>
					<?php endforeach; ?>
				</table>
			</div>
			
			<div class="col-sm-6">			<h4 class="text-center">Message Sent</h4>			<hr>
			<?php echo e($message->message); ?>

			</div>
		</div>
		<?php else: ?>
			<center><h4>Sorry no history for this batch found.</h4></center>
		<?php endif; ?>
	</div>
	<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
	<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
	<script type="text/javascript">
		$(function () {
		  $('[data-toggle="tooltip"]').tooltip();
		});
	</script>
</body>
</html>