1// Eloquent's Model::query() returns the query builder
2
3Model::where()->get();
4// Is the same as
5Model::query()->where()->get();
6
7Model::query();
8// Can be useful to add query conditions based on certain requirements
9
10// See https://stackoverflow.com/questions/51517203/what-is-the-meaning-of-eloquents-modelquery