Hi, I have a Filament Relation Manager and it's working well for the table part, but the form isn't updating in the browser. For example, the form function is as below:
public function form(Form $form): Form { return $form ->schema([ Forms\Components\Select::make('user_id') ->multiple() ->preload() ->relationship('mustReadUsers', 'name') ->searchable(), Forms\Components\TextInput::make('test') ->label('New field'), ]); }
public function form(Form $form): Form { return $form ->schema([ Forms\Components\Select::make('user_id') ->multiple() ->preload() ->relationship('mustReadUsers', 'name') ->searchable(), Forms\Components\TextInput::make('test') ->label('New field'), ]); }
However, this isn't reflected in the browser. Can someone offer some insight to why? I'm guessing the form may be being defined elsewhere instead but I have no idea where to start looking.