#Repeatable entry using table error like this

6 messages · Page 1 of 1 (latest)

buoyant matrix
#

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'),
                    ]),
            ]);
    }
}
untold islandBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

blazing flower
#

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.

buoyant matrix
#

Already optimize clear but still it doesnt work too

buoyant matrix
#

it working, I'm using ->columns(1)

thank you!