|bool */ protected $guarded = ['id']; /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = [ 'planned_date', ]; /** * Get the account record associated with the reminder. * * @return BelongsTo */ public function account() { return $this->belongsTo(Account::class); } /** * Get the reminder record associated with the reminder. * * @return BelongsTo */ public function reminder() { return $this->belongsTo(Reminder::class); } /** * Get the user record associated with the reminder. * * @return BelongsTo */ public function user() { return $this->belongsTo(User::class); } }