Frederik Sauer

Results 44 comments of Frederik Sauer

@jasonvarga I would love for this to get merged soon!

@ryanmitchell for some reason bindings don't work when using the Eloquent contract as type hint, which makes absolutely no sense, so it should just be reverted to the actual class...

This is very promising in terms of performance! I'd love to this being merged soon :)

So how do I make this lookup work? Cast the id to a string in `whereId()`?

@cuebit thanks, `id: this.number(null)` and `parseInt(id)` did the trick :)

Any ETA on this? I'm using a getter as a temporary workaround: ```javascript /** * Get author - workaround to support lazy loading. */ get author () { return User.find(this.authorId)...

I could really use "Many To Many Through" for this exact reason: User.id -> pivot -> Role.id -> pivot -> Permissions.id Currently you have to make a custom getter to...

Sure, if you can cache the result in some way. I don't know whether this is the most efficient way really... ```javascript /** * Get unique permissions through roles. *...

While it's still in draft PSR-5 states object types should use FQCN (unless undetermined): https://github.com/php-fig/fig-standards/blob/master/proposed/phpdoc.md#valid-class-name

When is this getting merged/fixed? It's not working correctly with .NET Core's JSON Patch implementation, failing with this error: `For operation 'add', the target location specified by path '/roles/1' was...