I am trying to eager load a model in laravel but only return certain columns. I do not want the whole eager loaded table being presented.
public function car()
{
return $this->hasOne('Car', 'id')->get(['emailid','name']);
}
I am getting the following error:
log.ERROR: exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Call to undefined method Illuminate\Database\Eloquent\Collection::getAndResetWheres()'