mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 14:27:33 -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->serial }}</td>
|
||||||
<td>
|
<td>
|
||||||
{{ $asset->last_checkout }}</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>
|
</tr>
|
||||||
@if($settings->show_assigned_assets)
|
@if($settings->show_assigned_assets)
|
||||||
@php
|
@php
|
||||||
|
|
Loading…
Reference in a new issue