'boolean', ]; /** * Get the account record associated with the reminder. * * @return BelongsTo */ public function account() { return $this->belongsTo(Account::class); } /** * Get the number_of_days_before field. * * @param int $value * @return int */ public function getNumberOfDaysBeforeAttribute($value) { return $value; } /** * Set the number_of_days_before field. * * @param int $value */ public function setNumberOfDaysBeforeAttribute($value) { $this->attributes['number_of_days_before'] = $value; } }