toodles
toodles
FFilament
Created by toodles on 10/19/2023 in #❓┊help
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
FFilament
Created by toodles on 5/25/2023 in #❓┊help
Toggle implementation Using Sqlite
Thats what was missing...adding it there got it to work. Thanks @Dennis Koch & @toeknee_iom
8 replies
FFilament
Created by toodles on 5/24/2023 in #❓┊help
Password not hashing when editing user
That helped!! thanks
4 replies
FFilament
Created by toodles on 5/16/2023 in #❓┊help
Approvals
I will look in that as well thanks
12 replies
FFilament
Created by toodles on 5/16/2023 in #❓┊help
Approvals
Being new to this landscape I will lookup into both what they are and if they will help. Thanks for the direction.
12 replies
FFilament
Created by toodles on 5/16/2023 in #❓┊help
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
FFilament
Created by toodles on 5/17/2023 in #❓┊help
Customize Admin Panel Pages
can yo upoint me in the direction of some repository where this might have been done that Ican use as a reference to follow how?
6 replies
FFilament
Created by toodles on 5/17/2023 in #❓┊help
Stop Many-Many Related Object from Showing on the bottom of the page-- solved
Thank you!
6 replies
FFilament
Created by toodles on 5/17/2023 in #❓┊help
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
FFilament
Created by toodles on 5/16/2023 in #❓┊help
Approvals
thank you!
12 replies
FFilament
Created by toodles on 5/16/2023 in #❓┊help
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
FFilament
Created by toodles on 5/14/2023 in #❓┊help
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
FFilament
Created by toodles on 5/14/2023 in #❓┊help
Preload Multi Select values [solved]
I think I need to catch it as an array then display but not sure how to. Thanks for your help.
13 replies
FFilament
Created by toodles on 5/14/2023 in #❓┊help
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
FFilament
Created by toodles on 5/14/2023 in #❓┊help
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
FFilament
Created by toodles on 5/14/2023 in #❓┊help
Preload Multi Select values [solved]
I usually learn better by following boilerplate code posted by others maybe the one I i was getting this from was outdated. Thanks for pointing it out, I am going to try this.
13 replies