belongsTo(Account::class); } /** * Get the contact record associated with the notification. * * @return BelongsTo */ public function contact() { return $this->belongsTo(Contact::class); } /** * Get the reminder record associated with the notification. * * @return BelongsTo */ public function reminder() { return $this->belongsTo(Reminder::class); } }