27 lines
764 B
PHP
27 lines
764 B
PHP
<x-app-layout>
|
|
{{-- <table class="table table-striped">--}}
|
|
{{-- <thead>--}}
|
|
{{-- <tr>--}}
|
|
{{-- <th>Word</th>--}}
|
|
{{-- <th>Translation</th>--}}
|
|
{{-- </tr>--}}
|
|
{{-- </thead>--}}
|
|
{{-- <tbody>--}}
|
|
|
|
{{-- @forelse ($words as $word)--}}
|
|
{{-- <tr>--}}
|
|
{{-- <td>{{$word->name}}</td>--}}
|
|
{{-- <td>{{$word->translation}}</td>--}}
|
|
{{-- </tr>--}}
|
|
{{-- @empty--}}
|
|
{{-- <tr>--}}
|
|
{{-- <td class="text-center" colspan="2">No words</td>--}}
|
|
{{-- </tr>--}}
|
|
{{-- @endforelse--}}
|
|
{{-- </tbody>--}}
|
|
{{-- </table>--}}
|
|
|
|
|
|
<x-table :items="$words" :fields="array('name','translation')" />
|
|
</x-app-layout>
|