Table inside simple resource's modal

Is there an option to view a table inside the resource edit modal? I need to put a table inside the edit modal (below the form fields) to act like a view-only relation manager
Solution
For someone looking at this in the future

I've created a ViewField with a blade file with the following content:

@livewire(
  \App\Filament\Resources\YouResource\RelationManagers\YourRelationManager::class,
  ['lazy' => true, 'ownerRecord' => $getRecord(), 'pageClass' => static::class]
)
Was this page helpful?