CJ Ronxel
CJ Ronxel
I am also experiencing this on bind. 
Hope this Question will have an answer. Not displaying on my end. using laravel/dompdf
> $user->isFriendWith($friend); > $user->hasFriendRequestFrom($sender); > $user->hasSentFriendRequestTo($recipient); > $user->hasBlocked($friend); What about this? It's on their docs
@avin-kavish I think you can create your own. you have check if the first letter of a value passed starts with a vowel. but there are possibilites that a value...
@mkwsra thank you for this beautiful package of yours. @Necmttn I am a newbie with this package too and I just digged in with the package just recently. I assume...
@YosefOberlander I think the better way for it is to make new Model that extends the Friendship model. Then add this: ``` /** * @return \Illuminate\Database\Eloquent\Relations\MorphMany */ public function friendRequests()...
@bigint upon diggin the package for a week because I like it very much. I can suggest this. ``` Add it as a user model scope: return $builder->when($hasUserAuthModel, function ($query)...
@prawn185 Oh! That can introdice an N+1 query. It should be on the sql layer imoo.
@spcbfr Thanks!! This saved me, I have been looking for a way to override this.