<?php $__env->startSection("content"); ?>
<div>
	<ol class="breadcrumb">
	  <li><a href="<?php echo e(URL::route('user.home')); ?>"><?php echo trans('messages.home'); ?></a></li>
		<li><a href="<?php echo e(URL::route('ictinventory.index')); ?>">ICT inventory</a></li>
	  <li><a href="<?php echo e(URL::route('user.home')); ?>">Breakdown Log</a></li>
		<li><a href="<?php echo e(URL::route('user.home')); ?>">ICT suppliers</a></li>
	  <li class="active">ICT equipment manintenance log</li>

	</ol>
</div>
<?php if(Session::has('message')): ?>
	<div class="alert alert-info"><?php echo trans(Session::get('message')); ?></div>
<?php endif; ?>
<div class="panel panel-default">
	<div class="panel-heading ">
		<span class="ion-gear-a"></span>
		ICT Equipment maintenance
		<div class="panel-btn">

			<a href="<?php echo URL::route("equipmentmaintenance.create"); ?>" class="btn btn-sm btn-info">
      <span class="glyphicon glyphicon-plus-sign"></span>
      <?php echo trans('messages.add'); ?>

      </a>

		</div>
	</div>


	<div class="panel-body">
	<div class="table-responsive">
  	<table class="table table-striped search-table small-font">
			<thead>
				<tr>
					<th>Date</th>
					<th>Name</th>
					<th>Last Service</th>
					<th>Next Service</th>
					<th>Serviced by</th>
					<th>Contact</th>
					<th>Supplier</th>
					<th>Comment</th>
				</tr>
			</thead>
			<tbody>
			<?php foreach($list as $item): ?>
				<tr>
					<td>  <?php echo date('d M Y', strtotime($item->created_at)); ?> </td>
					<td>  <?php echo $item->equipment->name; ?></td>
					<td>  <?php echo date('d M Y', strtotime($item->last_service_date)); ?></td>
					<td>  <?php echo date('d M Y', strtotime($item->next_service_date)); ?></td>
					<td>  <?php echo $item->serviced_by_name; ?></td>
					<td>  <?php echo $item->serviced_by_contact; ?></td>
					<td>  <?php echo $item->supplier->name; ?></td>
					<td>  <?php echo $item->comment; ?></td>
					<td>  </td>
				</tr>
			<?php endforeach; ?>
			</tbody>
  </table>
</div>

		<?php Session::put('SOURCE_URL', URL::full());?>
	</div>

</div>


<?php $__env->stopSection(); ?>

<?php echo $__env->make("layout", array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>