Caio Kawasaki
Caio Kawasaki
Another cool thing would be default key be set to Model binding... I already have a trait to create my Uuids, but if your package had this option I would...
I got the desired result with the following code: ``` $conversations = Chat::conversations()->for(Auth::user())->get(); $unreadConversations = $conversations->filter(function ($item) { return $item->last_message->is_seen == false; })->count(); ``` It would be nice to implement...
@Kagami I tried without success... Then I Find this guy: [https://github.com/zzarcon/microm](https://github.com/zzarcon/microm)
I was able to do what I wanted, but I had to do something ugly to get around the reactivity... ``` pending: (item) => { let search = _.find(this.users, (user)...
`node._vm.store.dplh.parent` worked! But how can I access `tree` inside my `dragEnd()` function?
@peiledoir I have no solution, I am waiting for a response from @phphe
Same problem on [v1.17.1](https://github.com/pedroslopez/whatsapp-web.js/releases/tag/v1.17.1), I need to restart the docker container so that the error does not recur. My Dockerfile: ```docker FROM node:14.16-slim as whatsapp_web_base ENV DEBIAN_FRONTEND noninteractive RUN apt-get...