F
Filament5mo ago
Vipul

Array/Json to Table Panel

We have a json column for a model and want to show that data as a filament table panel. It seems like a common use case and could not find documentation on it. To add table to infolist, we've created a livewire component and added it to the infolist using Livewire::make(component::class) However, adding the data to the table is eluding me.
2 Replies
Dhru
Dhru5mo ago
You use the same approach for the table with a custom column php artisan make:table-column
Dennis Koch
Dennis Koch5mo ago
Tables require Eloquent collections, so currently the only way to do is it to use the Sushi package. This will improve with v4. You can render a non-Filament table at any time.

Did you find this page helpful?