belongsTo(User::class, 'primary_parent_user_id'); } /** * Students billed under this account. */ public function students() { return $this->hasMany(StudentProfile::class, 'billing_account_id'); } }