Repeatable entry using table error like this

Hi my repeatable entry table mode showing like this idk why this happen.
<?php

namespace App\Filament\Resources\Clients\Schemas;

use Filament\Infolists\Components\RepeatableEntry;
use Filament\Infolists\Components\RepeatableEntry\TableColumn;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;

class ClientInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
RepeatableEntry::make('parental_family_members')
->table([
TableColumn::make('Name'),
TableColumn::make('Relation'),
TableColumn::make('Age'),
])
->schema([
TextEntry::make('full_name'),
TextEntry::make('relation'),
TextEntry::make('age'),
]),
]);
}
}
<?php

namespace App\Filament\Resources\Clients\Schemas;

use Filament\Infolists\Components\RepeatableEntry;
use Filament\Infolists\Components\RepeatableEntry\TableColumn;
use Filament\Infolists\Components\TextEntry;
use Filament\Schemas\Schema;

class ClientInfolist
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
RepeatableEntry::make('parental_family_members')
->table([
TableColumn::make('Name'),
TableColumn::make('Relation'),
TableColumn::make('Age'),
])
->schema([
TextEntry::make('full_name'),
TextEntry::make('relation'),
TextEntry::make('age'),
]),
]);
}
}
No description
Solution:
it working, I'm using
->columns(1)
->columns(1)
thank you!...
Jump to solution
3 Replies
Dennis Koch
Dennis Koch3d ago
Do you have php artisan filament:upgrade in your composer post update hooks? Otherwise run it manually and/or try php artisan filament:assets. It's a new feature and you still have old assets.
Tomato
TomatoOP3d ago
Hi, thanks for replying! I already done that, but still no it doesn't work Already optimize clear but still it doesnt work too
Solution
Tomato
Tomato3d ago
it working, I'm using
->columns(1)
->columns(1)
thank you!

Did you find this page helpful?