$job->id]); } public static function updateJob(X509Job $job): Url { return Url::fromPath('x509/job/update', ['id' => $job->id]); } public static function schedules(X509Job $job): Url { return Url::fromPath('x509/job/schedules', ['id' => $job->id]); } public static function scheduleJob(X509Job $job): Url { return Url::fromPath('x509/job/schedule', ['id' => $job->id]); } public static function updateSchedule(X509Schedule $schedule): Url { return Url::fromPath('x509/job/update-schedule', ['id' => $schedule->job->id, 'scheduleId' => $schedule->id]); } }