John Parker
Setting value of relationship form field via $set closure
@toeknee In terms of my previous comment, should I create an issue on GitHub?
I could understand the value not updating if the relationship field was set as disabled, but just being hidden doesn't feel like it should break the update.
11 replies
Eloquent `point` field type data triggers "Unexpected end of JSON input"
@toeknee Unless of course you mean the Filament Resource column, in which case that model attribute isn't used within Filament. (It's effectively controlled by a pair of custom setters.)
However, the probiem is that the very existence of spatial data in the field is breaking Livewire/Filament with the aforementioned "Unexpected end of JSON input" error.
I'm almost tempted to dig into the config to ensure the database connection encoding is correct, etc. but none of this has changed from the Livewire v2/Filament v2 version, hence it looks very much like it's a v3 specific issue.
13 replies
Eloquent `point` field type data triggers "Unexpected end of JSON input"
It's a
point
column, which is a specific thing, at least in MySQL/MariaDB and (I'm guessing) PostgreSQL.
The database migration is…
https://laravel.com/docs/10.x/migrations#column-method-point13 replies
Recommended approach for replacing Filament login with Jetstream?
Ooo… so close.
I'm guessing I also need to change the Filament logout menu option, as it throws a
Method Illuminate\Auth\RequestGuard::logout does not exist.
error otherwise.
Then again, replacing the "user" menu with the Jetstream equivalent would likely make more sense.
Time to do more hunting.24 replies