Class is firing __construct on Laravel Eloquent query?
When I do something like this,
$user = User::where('id', 1)->get()`;
constructor fires. Is there a way to avoid this?
I want to use the __construct function only when using the new keyword like this: $user = new User();