© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•4mo ago•
5 replies
galli.roberto

Relation manager, CreateAction modal: Livewire Exception

Laravel: 12.34.0
Filament: 4.1.8

I have CreateAction of relation manager that works on modal.

// RelationManager
public function table(Table $table): Table
  {
      return XXXTable::configure($table)
          ->headerActions([
              CreateAction::make()
          ])
          ->filters([])
          ->recordActions([])
          ->toolbarActions([]);
  }

  public function form(Schema $schema): Schema
  {
      return XXXForm::configure($schema);
  }

// Resource

public static function getPages(): array
  {
      return [
          'index' => XXXDelegations::route('/'),
      ];
  }
// RelationManager
public function table(Table $table): Table
  {
      return XXXTable::configure($table)
          ->headerActions([
              CreateAction::make()
          ])
          ->filters([])
          ->recordActions([])
          ->toolbarActions([]);
  }

  public function form(Schema $schema): Schema
  {
      return XXXForm::configure($schema);
  }

// Resource

public static function getPages(): array
  {
      return [
          'index' => XXXDelegations::route('/'),
      ];
  }


I get:
Livewire\Exceptions\RootTagMissingFromViewException
Livewire encountered a missing root tag when trying to render a component. When rendering a Blade view, make sure it contains a root HTML tag.

Is this a bug?
How to solve?
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

Weird relation manager CreateAction behaviour
FilamentFFilament / ❓┊help
5mo ago
Relation Manager not in modal
FilamentFFilament / ❓┊help
2y ago
Relation manager in action/modal
FilamentFFilament / ❓┊help
3y ago
CreateAction modal customization
FilamentFFilament / ❓┊help
2y ago