© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
7 replies
Askancy

Repeater::simple does not exist

I am using a repeater with the simple method, but I get this error:

Section::make('Pro Cons')
    ->schema([
        Repeater::make('Pro')
            ->simple(
                TextInput::make('pro'),
        ),

        Repeater::make('Cons')
            ->simple(
                TextInput::make('cons'),
        )
    ])
    ->collapsible(),
Section::make('Pro Cons')
    ->schema([
        Repeater::make('Pro')
            ->simple(
                TextInput::make('pro'),
        ),

        Repeater::make('Cons')
            ->simple(
                TextInput::make('cons'),
        )
    ])
    ->collapsible(),


>Method Filament\Forms\Components\Repeater::simple does not exist.

I also take this opportunity to ask, I currently have data within a saved sql column, each element is separated by |:

Little choice in weapons|IA sometimes unresponsive
Little choice in weapons|IA sometimes unresponsive


How should I convert it to fit filamentphp? I need to create an example pivot column:

  Schema::create('review_pivot_cons', function (Blueprint $table) {
      $table->id();
      $table->unsignedBigInteger('review_id');
      $table->unsignedBigInteger('cons');
      $table->timestamps();

      $table->foreign('review_id')->references('id')->on('review')->onDelete('cascade');
  });
  Schema::create('review_pivot_cons', function (Blueprint $table) {
      $table->id();
      $table->unsignedBigInteger('review_id');
      $table->unsignedBigInteger('cons');
      $table->timestamps();

      $table->foreign('review_id')->references('id')->on('review')->onDelete('cascade');
  });

could it work? In the case, how do I "populate" the textinputs?
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Repeater simple doesn't exist
FilamentFFilament / ❓┊help
3y ago
Custom page form repeater livewire error: property does not exist
FilamentFFilament / ❓┊help
14mo ago
prefix does not exist.
FilamentFFilament / ❓┊help
2y ago
extraFieldWrapperAttributes does not exist
FilamentFFilament / ❓┊help
2y ago