Class is firing __construct on Laravel Eloquent query?
14:23 15 Mar 2018

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();

php laravel eloquent