Laravel.io
@props([
    'filters' => null,
])

<nav class="columns mb-0">
    @isset($search)
        <x-form class="column">
            <x-form.field :is-grouped="$search->attributes->has('is-grouped')">
                {{ $search }}
            </x-form.field>
        </x-form>
    @endisset
</nav>

<div class="table-container">
    <table {{ $attributes->class([
        'table',
        'is-fullwidth',
        'is-hoverable',
        'is-vcentered',
    ]) }}>
        <thead>
            <tr>
                {{ $thead }}
            </tr>
        </thead>
        <tbody>
            {{ $slot }}
        </tbody>
    </table>
</div>

Please note that all pasted data is publicly available.