Files
Motula-Translate-Backend/resources/views/components/table.blade.php
2024-02-08 18:47:52 +01:00

27 lines
700 B
PHP

@props(['items' => []])
@props(['fields' => []])
<table class="table table-striped">
<thead>
<tr>
<th>Italian Word</th>
<th>Dialect Translation</th>
</tr>
</thead>
<tbody>
@forelse ($items as $item)
<tr>
<td>{{ $item->{$fields[0]} }}</td>
<td>{{ $item->{$fields[1]} }}</td>
<td> <a href=""><button class="btn btn-primary">Edit</button> </a> </td>
<td> <a href="delete_record/{{ $item->id }}"><button class="btn btn-danger">Delete</button> </a> </td>
</tr>
@empty
<tr>
<td class="text-center" colspan="2">No words</td>
</tr>
@endforelse
</tbody>
</table>