Fixes #2254
This commit is contained in:
parent
c1d2be651a
commit
616f922306
1 changed files with 61 additions and 61 deletions
|
@ -15,7 +15,7 @@
|
|||
<strong>{{ $item_name }}</strong>
|
||||
</td>
|
||||
</tr>
|
||||
@if isset($item_tag)
|
||||
@if (isset($item_tag))
|
||||
<tr>
|
||||
<td>
|
||||
Asset Tag:
|
||||
|
@ -25,7 +25,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@if isset($item_serial)
|
||||
@if (isset($item_serial))
|
||||
<tr>
|
||||
<td>
|
||||
Serial:
|
||||
|
@ -43,7 +43,7 @@
|
|||
<strong>{{ $checkout_date }}</strong>
|
||||
</td>
|
||||
</tr>
|
||||
@if isset($expected_checkin)
|
||||
@if (isset($expected_checkin))
|
||||
<tr>
|
||||
<td>
|
||||
Expected Checkin Date:
|
||||
|
@ -53,7 +53,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@if isset($note)
|
||||
@if (isset($note))
|
||||
<tr>
|
||||
<td>
|
||||
Additional Notes:
|
||||
|
|
Loading…
Add table
Reference in a new issue