Thank you. This is an eye opener. Not only with withCount, you have shown what it's possible with other eloquent methods for a situation like this.
@Niboros2 жыл бұрын
Thank you for going the extra mile and showcasing the various posibilities how to implement such a feature, and explaining the recommendations.
@dailyd3n2 жыл бұрын
Thanks for video. And also u can replace in relations: *_male,female "$this->hasMany(User::class)" to "$this->users()->where(....)" 🙂
@mibrahim42452 жыл бұрын
Sorry but can you explain more with one example? ..
@p30mehrdad2 жыл бұрын
you always surprise us with a new useful tip. thank you.😊
@MorshedulArefinBD2 жыл бұрын
Excellent Explanation
@amirulidzham2 жыл бұрын
Splendid again. Thanks .
@ivan.silicin2 жыл бұрын
Thank you, just what I need.
@ekpotosammuel68682 жыл бұрын
Thanks for making this video
@kinanmissing2 жыл бұрын
super surprise thank you so much solved my problem
@bhaveshverma86292 жыл бұрын
Thank. Very good 👍👍👍👍👍👍
@hadidagher94432 жыл бұрын
great video as always, what about this: users->groupBy(x) // 5 groups How to count groupBy elements?
@LaravelDaily2 жыл бұрын
Impossible to answer without exact example: grouping may happen with raw query, with eloquent, with collections, depending on the situation.
@AMoktar2 жыл бұрын
Thats awesome thanks
@entertaint30452 жыл бұрын
you r amazing.. do you have vid laravel websocket.. sory out of topic.. 😅😅
@LaravelDaily2 жыл бұрын
No, and that's why: twitter.com/PovilasKorop/status/1470640480593801216
@entertaint30452 жыл бұрын
@@LaravelDaily great.. thanks
@neerajsinghtangariya25872 жыл бұрын
🔥
@freejobsadda2018 Жыл бұрын
Hi sir i need code for a project i will pay u money for that
@janugameryt5893 Жыл бұрын
sir i want simple senario please give me
@tstarfish88292 жыл бұрын
I don't understand why are you adding extra words related:/column:/operator: into hasMany(...) function, when it works also without it. And it is not in the Laravel doc. like that.
@LaravelDaily2 жыл бұрын
PHPStorm does that for me automatically, these are hints, not the code.
@tenzinchemi14592 жыл бұрын
Male/Female/Others
@GC_WK22 жыл бұрын
why female relation repeat the code? I think better return $this->users()->where('gender','female');
@LaravelDaily2 жыл бұрын
Also possible, yes.
@KnightYoshi2 жыл бұрын
I'd call `where` off of the existing `users()` method just to prevent that duplication public function users_male(): HasMany {return $this->users()->where(...);}