awcodes / filament-table-repeater

A modified version of the Filament Forms Repeater to display it as a table.
MIT License
194 stars 43 forks source link

Placeholder::isRequired does not exist #47

Closed RickDBCN closed 1 year ago

RickDBCN commented 1 year ago

Since the latest version our table repeater broke. See flare: https://flareapp.io/share/4m4B0RJ7 This is our repeater:

Tab::make('Producten')
                                    ->schema([
                                        TableRepeater::make('products')
                                            ->relationship('orderItems')
                                            ->createItemButtonLabel('Regel toevoegen')
                                            ->label('')
                                            ->hideLabels()
                                            ->columnWidths([
                                                'sku' => '150px',
                                                'description1' => '350px',
                                                'description2' => '350px',
                                                'item_quantity' => '100px',
                                                'price' => '100px',
                                                'total_price' => '100px',
                                            ])
                                            ->schema([
                                               xxxxxx
                                            ]),