'boolean', 'include_foundations' => 'boolean', 'days_of_week' => 'array', 'policy_types' => 'array', 'last_run_at' => 'datetime', 'next_run_at' => 'datetime', ]; public function tenant(): BelongsTo { return $this->belongsTo(Tenant::class); } public function runs(): HasMany { return $this->hasMany(BackupScheduleRun::class); } }