@props([ 'tables' => [], 'filters' => [], ]) @php $categories = collect($tables)->map(function ($table) { return (new $table)->title; })->toArray(); @endphp @foreach($tables as $index => $table) @php $slot_name = 'slot_' . $index; $filter = data_get($filters, $index, []); @endphp @livewire($table, $filter) @endforeach