> */ public function rules(): array { return [ 'name' => [ 'required', 'string', 'min:1', 'max:255', UniqueEloquent::make(Task::class, 'name', function (Builder $builder): Builder { /** @var Builder $builder */ return $builder->where('project_id', '=', $this->task->project_id); })->ignore($this->task?->getKey())->withCustomTranslation('validation.task_name_already_exists'), ], 'is_done' => [ 'boolean', ], // Estimated time in seconds 'estimated_time' => [ 'nullable', 'integer', 'min:0', 'max:2147483647', ], ]; } public function getIsDone(): bool { assert($this->has('is_done')); return $this->boolean('is_done'); } public function getEstimatedTime(): ?int { $input = $this->input('estimated_time'); return $input !== null && $input !== 0 ? (int) $this->input('estimated_time') : null; } }