One of these Laravel Eloquent methods doesn't get enough love.
Which one are you reaching for? 👇
I'd go with A. 😄
Most of the time I end up adding more conditions anyway, so starting with where() keeps the query chain consistent and easier to extend later.
firstWhere() is nice for quick lookups, but I rarely have a query that stays that simple.
(btw, I'd probably write User::query()->where(...) these days 😅)