Illizian
Illizian
Explore posts from servers
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
I've not got an MCP working with it yet, but avante.nvim and Cursor will both connect to it.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
It's a bit over keen, but it's reasoning is often very satisfying to watch.
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
Try Gemini 2.5Pro! It's easily leading atm!
81 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
ah ha, perfect. There was me sitting here grumbling at that notion haha... Can I suggest you just point any LLM at https://www.answeroverflow.com/c/883083792112300104 @jals65, or vectorize that and the doc site and RAG a model with it. I've found Cursor to be "reasonable" at FIlament once it has indexed the docsite
81 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
looks like this supports: ->action(function($records) {}) which is exactly what you need, but would require the user to hit the "Select All" button once filtered. This would however (for better UX) let them additionally filter it by unticking/ticking the ones they need if the filter isn't enough for their purpose.
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
(I'm also fairly new to filament)
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
oh, "PDF" the clue was right there in your action title. Not sure it'll support that, probably just csv/xls
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
I'm not sure what you're doing but it's worth checking out https://filamentphp.com/docs/3.x/actions/prebuilt-actions/export too
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
I'd recommend a bulk action, I think it'll make for better UX too
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
Oh, in that case you'll have to wait for someone far compotent than I 😅
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
In your IDE, or browser?
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
Where do you see that error?
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
Hmm.
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
Oh wait....where is your table? Is it a ListResource or custom?
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
Is that just in your LSP?
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
try:
$this->getFilteredTableQuery()->clone()->get()
$this->getFilteredTableQuery()->clone()->get()
in your action
26 replies
FFilament
Created by kobosoft.dev on 4/22/2025 in #❓┊help
Table filters result
You're gonna need to give us some more info! It sounds like you just need a bulk action. I think you can also get the current table entries in a table header action too
26 replies
FFilament
Created by frame on 4/16/2025 in #❓┊help
Prevent form from closing and show error on action form submit
oooooh!!! I definetly prefer that!
14 replies
FFilament
Created by frame on 4/16/2025 in #❓┊help
Prevent form from closing and show error on action form submit
ValidationException::withMessages([
// @TODO: Find a neater way of throwing this, I do not like the namespace below!!
"mountedTableActionsData.0.{$name}" => __('Error Message'),
]));
ValidationException::withMessages([
// @TODO: Find a neater way of throwing this, I do not like the namespace below!!
"mountedTableActionsData.0.{$name}" => __('Error Message'),
]));
complete with my shame // @TODO haha
14 replies