tethys/resources/views/rdr/document/documents.blade.php

44 lines
893 B
PHP
Raw Normal View History

2018-08-06 12:30:51 +00:00
@extends('layouts.app')
@section('content')
2018-08-29 15:18:15 +00:00
<h1 class="title">Documents</h1>
<br><br>
<table class="pure-table pure-table-horizontal">
<thead>
<th>id</th>
<th>document type</th>
<!-- <th>Category</th>
<th>Shelf</th> -->
</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>
@endforeach
</tbody>
</table>
2018-08-06 12:30:51 +00:00
@stop