ALPHA 3.0.5

This commit is contained in:
TheGamecraft
2018-09-21 14:31:00 -04:00
parent 252ff658e0
commit 3b593297cd
33 changed files with 559 additions and 98 deletions

View File

@@ -13,7 +13,7 @@
<table id="log-data" class="table table-striped table-bordered">
<thead>
<tr>
<th>ID </th>
<th>Quantité</th>
<th>Nom</th>
<th>Description</th>
<th></th>
@@ -22,7 +22,7 @@
<tbody>
@foreach ($items as $item)
<tr>
<td style="width:5%;">{{$item->id}}</td>
<td style="width:5%;">{{$item->quantity}}</td>
<td>{{$item->name}}</td>
<td>{{$item->desc}}</td>
<td style="width: 12%;"><a href="/admin/item/edit/{{$item->id}}" type="button" class="btn btn-secondary"><i class="fa fa-cog"></i>&nbsp; Modifier</a><a type="button" class="btn btn-danger" onclick="deleteEvent({{$item->id}});"><i class="fa fa-times-circle" style="color:white;"></i></a></td>