Matt

Results 22 comments of Matt

I have the same issue. Using version 5.9.1 I get an undefined payload if there's nothing in localstorage (same with localForage).

This change breaks the refresh middleware flow as it requires the token not to be expired when refreshing. If you first call `$this->manager->setRefreshFlow()` it appears to fix it. A further...

I had to make a couple of changes to get this fix working for me. Adding a call to `setRefreshFlow` makes sure that tokens which can be renewed are used....

With iOS 11 moving to TwitterKit 3 becomes a bit more urgent - login via TK2 no longer works as it's looking for system Twitter accounts that have been removed....

This issue still exists in 0.68 (the originally reported issue, unrelated to splash screens).

> Maybe this mr could solve your issue [#53655](https://github.com/laravel/framework/pull/53655) It probably would for the relation example. But there's other reasons needlessly running your accessors isn't ideal. Consider this example, running...

> The count example can be solved with function call > > `->withCount('payment_methods')` or `->withCount('paymentMethods')`when querying and you can also alias the resulting key as **total_payment_methods** , default being **payment_methods_count**...

> [@mattmcdev](https://github.com/mattmcdev) we would not put a http call in an attribute accessor. We would use appends for that and append it only on a get by id call for...

Totally understand there are workarounds to all the things you might do in an accessor that mitigate the issue of it being called when it isn't needed. But the root...

Thanks for the PR. For this to truly not be a breaking change, the current value passed along to the `ownerKey` property is `null`, so the default returned value should...