© 2026 Hedgehog Software, LLC
Section::make(__('app..description')) ->schema([ TableRepeater::make('name') ->label('label') ->relationship('relationship') ->schema([ TextInput::make('product'), TextInput::make('company_id'), TextInput::make('quantity'), TextInput::make('price'), Actions::make([ Actions\Action::make('action_name') ->label(__('app.label')) ->requiresConfirmation() ->color('danger') ->tooltip(__('app._tooltip')) ->iconButton() ->icon('heroicon-o-x-circle') ->action(function (ClusterOrderItemAssignment $item) { //... }) ->hidden(function (?Model $record) { return $record->some_bool_attribute; }), ]), ]) ->hideLabels() ->columnSpanFull(), ]);
Typed property Filament\Forms\Components\Component::$container must not be accessed before initialization