binaryfire
Explore posts from serversDisable `?page=....` query string params for a table
There doesn't seem to be an option to do that for pagination unfortunately: https://filamentphp.com/docs/3.x/tables/advanced#query-string.
Pagination is added by default: https://github.com/filamentphp/filament/blob/4ff166612c38d7cab5d29981fdd9ba2df77e7b6a/packages/tables/src/Concerns/InteractsWithTable.php#L38
I got it working using the
Livewire\WithoutUrlPagination
trait though: https://livewire.laravel.com/docs/pagination#disabling-url-query-string-tracking5 replies
Help Us Improve Filament’s Docs & Education in v4
Perhaps you could treat the demo as more of a collection of interactive examples? Add a bunch of new resources for things that aren't currently in there (like the builder field), implement broadcasting etc. Could link to specific URLs from the docs and people can code dive on the repo too.
Or if you want to keep the demo clean, maybe a separate examples app to go alongside the docs
69 replies
Open builder block picker in modal instead of dropdown
Yeah the wiring-it-back-up part is what I'm unsure about. Probably not worth it. Would be an awesome feature to have in core a some point... The dropdown gets pretty unwieldy with lots of blocks (even with columns)
6 replies
Optimizing / compressing image uploads before saving to disk (no media library)
@Lara Zeus Saw that one. It’s using Spatie Media Library. That’s lots of code I’d need to dig through to use it as a reference - including deep diving into the Spatie package and the Filament integration for it.
I’m definitely not opposed to source diving, but it’s a huge amount of work for what (I think?) must have an easy solution. Eg some way to access the path of uploads while they’re still in Livewire’s tmp dir and process them before they are moved from there to the disk?
7 replies