fixing bulk delete table

This commit is contained in:
akemidx 2024-10-30 19:26:52 -04:00
parent f68df1fa06
commit f10807661d

View file

@ -42,15 +42,15 @@
<td>{{ $asset->id }}</td>
<td>{{ $asset->present()->name() }}</td>
<td>
@if ($asset->location)
@if ($asset->location_id)
{{ $asset->location->name }}
@elseif($asset->rtd_location_id)
{{ $asset->defaultLoc->name }}
@endif
</td>
<td>
{{ $asset->assigned_to }}
@if ($asset->assignedTo)
{{ $asset->assignedTo->present()->name()}}
@if ($asset->assigned_to)
{{ $asset->assigned->present()->name() }}
@endif
</td>
</tr>