morphTo(); } public function latest_log(): HasOne { return $this->hasOne(ScheduledDatabaseBackupExecution::class)->latest(); } public function executions(): HasMany { return $this->hasMany(ScheduledDatabaseBackupExecution::class); } public function s3() { return $this->belongsTo(S3Storage::class, 's3_storage_id'); } }