alphaxjr
alphaxjr
FFilament
Created by alphaxjr on 4/23/2025 in #❓┊help
Create relationship data from Parent from Create Page.
Solved! Turns out I had to use Group
Group::make()
->relationship('course')
->schema([
Grid::make(12)
->schema([
Select::make('profiles')
->relationship('profiles', 'name')
->preload()
->multiple()
->maxItems(1)
->columnSpan(6)
->native(false),
Group::make()
->relationship('course')
->schema([
Grid::make(12)
->schema([
Select::make('profiles')
->relationship('profiles', 'name')
->preload()
->multiple()
->maxItems(1)
->columnSpan(6)
->native(false),
if someone sees this can someone verify that if Iam doing the right thing or not. OR if there's a better way to do this then please teach me.
4 replies