mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Fixed parse error in user print view
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
19766a0a72
commit
9eea46adef
|
@ -85,7 +85,11 @@
|
|||
<td>{{ $asset->serial }}</td>
|
||||
<td>
|
||||
{{ $asset->last_checkout }}</td>
|
||||
<td><div><img height="20%" src="{{ asset('/') }}display-sig/{{ $asset->assetlog->first()->accept_signature }}"></img></div></td>
|
||||
<td>
|
||||
@if ($asset->assetlog->first())
|
||||
<img height="20%" src="{{ asset('/') }}display-sig/{{ $asset->assetlog->first()->accept_signature }}">
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@if($settings->show_assigned_assets)
|
||||
@php
|
||||
|
|
Loading…
Reference in a new issue