Files
Motula-Translate-Backend/resources/views/components/table.blade.php
2024-01-27 19:25:20 +01:00

25 lines
484 B
PHP

@props(['items' => []])
@props(['fields' => []])
<table class="table table-striped">
<thead>
<tr>
<th>Word</th>
<th>Translation</th>
</tr>
</thead>
<tbody>
@forelse ($items as $item)
<tr>
<td>{{ $item->{$fields[0]} }}</td>
<td>{{ $item->{$fields[1]} }}</td>
</tr>
@empty
<tr>
<td class="text-center" colspan="2">No words</td>
</tr>
@endforelse
</tbody>
</table>