mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Fixed #8426 - show model number in custom fields model listing
This commit is contained in:
parent
f949a95cfb
commit
2f435a57c1
|
@ -60,7 +60,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@foreach($fieldset->models as $model)
|
@foreach($fieldset->models as $model)
|
||||||
<a href="{{ route('models.show', $model->id) }}" class="label label-default">{{ $model->name }}</a>
|
<a href="{{ route('models.show', $model->id) }}" class="label label-default">{{ $model->name }}{{ ($model->model_number) ? ' ('.$model->model_number.')' : '' }}</a>
|
||||||
|
|
||||||
@endforeach
|
@endforeach
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in a new issue