toodles
Licensing of filament website source
Thank you! I did mean the website, more specifically only the community page. Its a well matured knowledge base template. All logos/colors and some terminologies will be changed. I plan to add more detailed profile and stuff like that. Does that sound OK? Any other considerations? @Dennis Koch
10 replies
Approvals
@danharrin The approach in this project worked for us. A nice to have is a similar approval mechanism for Edits of Resources too and highlight exactly what changed with each edit. Any suggestions on how to achieve something like that?
12 replies
Stop Many-Many Related Object from Showing on the bottom of the page-- solved
I do have a relationship manager created. Is it the relationship manager that is rendering this grid of object2 below by object 1 creation page? If so, do I not need a relationship manager if I do not need this grid ? will filament identify this relation between opbject1 and Object2 with just the belongs to many defined in both models?
6 replies
Approvals
thats super interesting to know the site itself is built on filament. Pls bear with a newbie question. I see the repo but I do not see the app folder which I am used to to dig in and read the code. What doler structure am I seeing in the repo?
12 replies
Preload Multi Select values [solved]
that prod was what I needed, thanks got it to work with this. >schema([
Forms\Components\TextInput::make('title')->label('Title')->required(),
Forms\Components\Select::make('certifications')
->multiple()
->label('Certifications')
->relationship('certifications', 'name')
->preload(),
13 replies
Preload Multi Select values [solved]
Thanks ...return $form
->schema([
Forms\Components\TextInput::make('title')->label('Title')->required(),
Forms\Components\Select::make('certifications')
->multiple()
->label('Certifications')
->relationship('certifications', 'name')
->options([
AssociateAction::make()->preloadRecordSelect()
13 replies
Preload Multi Select values [solved]
Thanks I added ->options([
AssociateAction::make()->preloadRecordSelect() as mentioned in the doc and the drop down mode seems to have activated, but is returning literally one value [object Object]. I am looking into it, but if you can point at what I might be missing id appreciate it.
13 replies