'required|string', 'task.command' => 'required|string', 'task.frequency' => 'required|string', 'task.container' => 'nullable|string', ]; protected $validationAttributes = [ 'name' => 'name', 'command' => 'command', 'frequency' => 'frequency', 'container' => 'container', ]; public function mount() { $this->parameters = get_route_parameters(); if (data_get($this->parameters, 'application_uuid')) { $this->type = 'application'; $this->resource = Application::where('uuid', $this->parameters['application_uuid'])->firstOrFail(); } else if (data_get($this->parameters, 'service_uuid')) { $this->type = 'service'; $this->resource = Service::where('uuid', $this->parameters['service_uuid'])->firstOrFail(); } $this->modalId = new Cuid2(7); $this->task = ModelsScheduledTask::where('uuid', request()->route('task_uuid'))->first(); } public function submit() { $this->validate(); $this->task->save(); $this->dispatch('success', 'Scheduled task updated.'); $this->dispatch('refreshTasks'); } public function delete() { try { $this->task->delete(); if ($this->type == 'application') { return redirect()->route('project.application.configuration', $this->parameters); } else { return redirect()->route('project.service.configuration', $this->parameters); } } catch (\Exception $e) { return handleError($e); } } }