/** * Get all of the cvs for a given user. * * @param User $user * @return Collection */ public function forUser(User $user) { return CV::where('user_id', $user->id)->orderBy('created_at', 'asc')->get(); }