<?php $__env->startSection('title', 'Company List'); ?>

<?php $__env->startSection('content'); ?>	
	<div class="panel panel-default">
		<div class="panel-heading">
			<h3 class="panel-title"><i class="fa fa-building"></i> Companies</h3>
		</div>
		<div class="panel-body">
			<?php if(Session::has('message')): ?>
				<div class="alert alert-success alert-dismissable" role="alert">
					<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
					<i class="fa fa-check"></i> <?php echo Session::get('message'); ?>

				</div>
			<?php endif; ?>
			
			<div class="row">
				<div class="col-md-9">
					<p>Here you can add, view, edit and delete the companies that contacts belong to.</p>
					<p>You can delete companies on their 'view' or 'edit' page.</p>
				</div>
				<div class="col-md-3">
					<a href="/companies/create" class="btn btn-primary btn-block"><i class="fa fa-plus"></i> Add A Company</a>
				</div>
			</div>
		</div>
		<table id="company-list" class="table table-hover table-sortable display">
			<thead>
				<tr>
					<th>Account Code</th>
					<th>Company</th>
					<th>View</th>
					<th>Edit</th>
				</tr>
			</thead>
			<tbody>		
				<?php foreach($companies as $company): ?>
					<tr>
						<td><?php echo $company->accountcode; ?></td>
						<td><?php echo $company->name; ?></td>
						<td><a href="companies/<?php echo $company->id ?>" class="btn btn-sm btn-default"><i class="fa fa-eye"></i> View</a></td>
						<td><a href="companies/<?php echo $company->id ?>/edit" class="btn btn-sm btn-default"><i class="fa fa-pencil-square-o"></i> Edit</a></td>
					</tr>	
				<?php endforeach; ?>
			</tbody>
		</table>
	</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>