Momo Kornher

Results 261 comments of Momo Kornher

@druid8 Running into the same issue. Did you find a workaround?

There is also an other bug with Laravel 5.5: If an attribute is casted, the `getDirty` will fail as well in certain cases. Essentially Laravel is casting the encrypted values...

Instead of trying to fix it for both versions at the same time (or forks or whatever), @delatbabel you could just release a new version which requires Laravel 5.5

@ITwrx Overwrite it in the model that needs to be encrypted. We have a base model for all encrypted models which uses Elocrypt's trait and overrides the `castAttribute` method (amongst...

Untested, but you should be able to add a custom scope ``` php $posts = $this->repository->scopeQuery(function($query){ return $query->withTrashed(); })->all(); ``` Alternatively you may add a Criteria for this purpose, especially...

Not a proper fix, but for everyone else who finds this issue via search: You can achieve this roughly by choosing very large gaps between dividers (e.g. 100). For me...

This would be quite a cool thing! @RomainMuller Yes RegExp aren't a unified standard, but with JSII at least we know that the execution will be done in Node.js. That...

In addition authors can mark specific versions of a package as deprecated. By default they are hidden on npmjs.com and viewing a deprecate version does prominently display a deprecation notice.

Hi @moltar Thank you for this RFC. Could you share more about your motivation behind these changes? What's the benefit to the users? How will the UX change/improve with this...

I like the idea of FQNs.... Still I'd also like the auto-suggest to be less aggressive, if that's possible.