Junior Grossi

Results 131 comments of Junior Grossi

@tbruckmaier sorry for keeping you waiting such a long time 😢 can you fix conflicts with 3.0 and update the PR before merging please? thank you

@luizvid changed base branch to 3.0. can you fix conflicts and add a quick unit test case please? thank you

@AnaxagorasKosta are you including `CorcelServiceProvider` and did you add the `corcel` authentication method like in here: https://github.com/corcel/corcel/blob/2.8/README.md#auth ?

@AnaxagorasKosta calling `auth()->user()` returns the `User` instance, not the user id. ```php $user = auth()->user(); $test = $user->meta; ```

yep, it's a serialized string. I think `UserMeta` does not support unserialization by defualt, but you can call `unserialize()` like you did for now. gonna raise a PR for that...

@bumbummen99 completely agree, but invalidating all hashes stored in the databases would be a big impact for now. gonna keep all PRs from @TheoKouzelis opened and maybe adding a breaking...

@mafiadek @namnguyen2091 thanks for sharing! actually, Corcel works on the top of [Laravel's Eloquent ORM](https://laravel.com/docs/5.7/eloquent), so you can use all the relations the `Post` class has and insert what you...

@mafiadek @namnguyen2091 just created a `addTerm()` method to the `Post` class. let me know your thoughts. Here is the PR #425. thanks! 🎉💪

@davidbrannvall can you provide a PR with that change please?