Check that the user has assets and that the aset model is valid

This commit is contained in:
snipe 2019-07-17 17:51:35 -07:00
parent 444e250609
commit 0e93495ca2

View file

@ -340,10 +340,11 @@
</tr>
</thead>
<tbody>
@if ($user->assets)
@foreach ($user->assets as $asset)
<tr>
<td>
@if ($asset->physical=='1')
@if (($asset->model) && ($asset->physical=='1'))
<a href="{{ route('models.show', $asset->model->id) }}">{{ $asset->model->name }}</a>
@endif
</td>
@ -360,6 +361,7 @@
</td>
</tr>
@endforeach
@endif
</tbody>
</table>
</div>