Fixed bug linking to assets when they should be pointing to licenses

This commit is contained in:
snipe
2013-11-25 18:31:59 -05:00
parent 4e25a9e815
commit 7a5b133c58
+3 -3
View File
@@ -93,10 +93,10 @@ View User {{ $user->fullName() }} ::
Software
@endif
</td>
<td><a href="{{ route('view/asset', $license->id) }}">{{ $license->serial }}</a></td>
<td><a href="{{ route('view/asset', $license->id) }}">{{ $license->name }}</a></td>
<td><a href="{{ route('view/license', $license->id) }}">{{ $license->serial }}</a></td>
<td><a href="{{ route('view/license', $license->id) }}">{{ $license->name }}</a></td>
<td> <a href="{{ route('checkin/asset', $asset->id) }}" class="btn-flat info">Checkin</a></td>
<td> <a href="{{ route('checkin/license', $asset->id) }}" class="btn-flat info">Checkin</a></td>
</tr>
@endforeach
</tbody>