Mike Bronner
Mike Bronner
@kirkbushell Diving into Livewire's validation code, it appears they convert everything that gets validated to arrays by calling `toArray()` on models and collections. The CamelCase trait exposes only the camel-cased...
I didn't ... do you write all your fillable, casts, etc. in camel-case? I didn't realize that the camel casing trait would allow for that.
I don't believe any other work is needed, I have been trialing it for the past several days, and it works great.
@tom-pryor I was able to run it without requiring any other dependency updates.
Closing this, as this appears to be resolved now.
@kirkbushell This can be closed -- now works in Laravel 9 as well as PHP 8.1.
It sounds like you need to exclude your webhooks from being checked for CSRF tokens, but I have never had this issue. Please provide a working example repo that demonstrates...
@mirko77 @gustafsilva Could either of you provide an example test repo that demonstrates this issue?
@netpok Thanks for the suggestions. I'll consider this in the future.
i belive you have to add the scopes, which is mentioned on the readme. Did this not work? ```php Socialite::driver("sign-in-with-apple") ->scopes(["name", "email"]) // ... ```