© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
1 reply
KinBH

move getRelations() to especific area on form()

Is possible change position for :

public static function getRelations(): array
{
return [
DocumentoCompsRelationManager::class,
];
}

Problem: my last item on Form are multiple pictures, so my relation "fades away" in final on page, need something like this:

Forms\Components\RichEditor::make('texto')
->required()
->columnSpanFull(),

Forms\Components\Section::make(DocumentoCompsRelationManager::class)

Forms\Components\Section::make('Imagem chamada')
->hiddenLabel()
->collapsible()
->schema([
Forms\Components\FileUpload::make('image_chamada')
->hiddenLabel()
->minSize(20)
->multiple
->maxSize(6000)
->hint('Tamanho máximo permitido: 5mb.')
->acceptedFileTypes(['image/png', 'image/jpg', 'image/jpeg'])
->directory('competicoes/chamada')
]),

How i can do?
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

GetRelations another getrelations
FilamentFFilament / ❓┊help
17mo ago
Relation on text area form?
FilamentFFilament / ❓┊help
3y ago
Form, Grid to have Sections on main area with side area.
FilamentFFilament / ❓┊help
3y ago
How to dynamically set getRelations()?
FilamentFFilament / ❓┊help
3y ago