mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 14:27:33 -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>
|
||||
@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
|
||||
</td>
|
||||
|
|
Loading…
Reference in a new issue