13 lines
529 B
PHP
13 lines
529 B
PHP
@props(['device'])
|
|
<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> |