<?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> Clientes</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>Aqui usted puede crear, ver, editar y eliminar, clientes.</p>
					<p>Puede eliminar clientes en la opcion 'ver' o 'editar'.</p>
				</div>
				<div class="col-md-3">
					<a href="/companies/create" class="btn btn-primary btn-block"><i class="fa fa-plus"></i> Agregar cliente</a>
				</div>
			</div>
		</div>
		<table id="company-list" class="table table-hover table-sortable display">
			<thead>
				<tr>
					<th>Codigo de cuenta</th>
					<th>Cliente</th>
					<th>Ver</th>
					<th>Editar</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> Ver</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> Editar</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(); ?>