mg
mg
Explore posts from servers
FFilament
Created by mg on 11/19/2024 in #❓┊help
How to pass some data to my custom view(livewire component) in filament table action?
Hi, This is my filament table action.
Action::make('setting')
->iconButton()
->icon('heroicon-o-cog-6-tooth')
->modalWidth(MaxWidth::Large)
->fillForm(fn (Website $record) => $record->toArray())
->form([
View::make('filament.components.user-shortener-settings'),
])
->modalSubmitAction(false),
Action::make('setting')
->iconButton()
->icon('heroicon-o-cog-6-tooth')
->modalWidth(MaxWidth::Large)
->fillForm(fn (Website $record) => $record->toArray())
->form([
View::make('filament.components.user-shortener-settings'),
])
->modalSubmitAction(false),
This is the action of my websites table and I am trying to pass website_id to the view(user-shortener-settings). I have tried to use viewData() method but no luck! Please help me!
2 replies
FFilament
Created by mg on 11/15/2024 in #❓┊help
Please take a look at the following and help me to resolve it.
11 replies
TTCTheo's Typesafe Cult
Created by mg on 12/19/2023 in #questions
Next 14 + TRPC + Clerk How to implement api authorization?
I am just following Theo's guide but it seems like the Next.js version is v13 and it seems that the code base between those 2 versions are different.
5 replies