add publish module

This commit is contained in:
Arno Kaimbacher 2018-08-29 17:18:15 +02:00
parent 100f6db9a6
commit ffbbc04206
93 changed files with 8150 additions and 10228 deletions

View file

@ -2,43 +2,43 @@
@section('content')
<h1 class="title">Documents</h1>
<h1 class="title">Documents</h1>
<br><br>
<br><br>
<table class="pure-table pure-table-horizontal">
<table class="pure-table pure-table-horizontal">
<thead>
<th>id</th>
<th>document type</th>
<!-- <th>Category</th>
<th>Shelf</th> -->
<thead>
<th>id</th>
<th>document type</th>
<!-- <th>Category</th>
<th>Shelf</th> -->
</thead>
</thead>
<tbody>
@foreach($documents as $document)
<tr>
<td>{{ $document->id }}</td>
<td>{{ $document->type }}</td>
<!-- <td>
if($book->stock > 0)
Available
elseif($book->stock == 0)
-
endif
</td> -->
</tr>
<tbody>
@foreach($documents as $document)
<tr>
<td>{{ $document->id }}</td>
<td>{{ $document->type }}</td>
<!-- <td>
if($book->stock > 0)
Available
elseif($book->stock == 0)
-
endif
</td> -->
</tr>
@endforeach
@endforeach
</tbody>
</table>
</tbody>
</table>
@stop