grocy/views/batteries.blade.php
2018-04-11 19:51:05 +02:00

51 lines
1.2 KiB
PHP

@extends('layout.default')
@section('content')
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h1 class="page-header">
Batteries
<a class="btn btn-default" href="/battery/new" role="button">
<i class="fa fa-plus"></i>&nbsp;Add
</a>
</h1>
<div class="table-responsive">
<table id="batteries-table" class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Description</th>
<th>Used in</th>
</tr>
</thead>
<tbody>
<?php foreach ($batteries as $battery) : ?>
<tr>
<td class="fit-content">
<a class="btn btn-info" href="/battery/<?php echo $battery->id; ?>" role="button">
<i class="fa fa-pencil"></i>
</a>
<a class="btn btn-danger battery-delete-button" href="#" role="button" data-battery-id="<?php echo $battery->id; ?>" data-battery-name="<?php echo $battery->name; ?>">
<i class="fa fa-trash"></i>
</a>
</td>
<td>
<?php echo $battery->name; ?>
</td>
<td>
<?php echo $battery->description; ?>
</td>
<td>
<?php echo $battery->used_in; ?>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
@stop