2023-03-30 15:16:38 +02:00
|
|
|
@props(['device'])
|
2023-04-06 12:17:42 +02:00
|
|
|
<tr>
|
|
|
|
<td><a href="/devices/{{ $device['device_id'] }}">{{ $device->title }}</a></td>
|
|
|
|
<td>{{ $device['device_type'] }}</td>
|
|
|
|
<td>{{ $device['description'] }}</td>
|
|
|
|
<td>{{ $device['accessories'] }}</td>
|
|
|
|
<td>{{ $device['rz_username_buyer'] }}</td>
|
|
|
|
<td>{{ $device['serial_number'] }}</td>
|
|
|
|
<td>{{ $device['image_url'] }}</td>
|
|
|
|
{{-- TODO: Nicht null --}}
|
|
|
|
<td>{{ $device->locations->last()['room_code'] ?? ''}}</td>
|
|
|
|
<td>{{ $device->owners->last()['rz_username'] ?? ''}}</td>
|
|
|
|
</tr>
|