> */ public function rules(): array { return [ 'name' => [ 'required', 'string', 'max:255', UniqueEloquent::make(Project::class, 'name', function (Builder $builder): Builder { /** @var Builder $builder */ return $builder->whereBelongsTo($this->organization, 'organization'); })->ignore($this->project?->getKey())->withCustomTranslation('validation.project_name_already_exists'), ], 'color' => [ 'required', 'string', 'max:255', new ColorRule, ], 'is_billable' => [ 'required', 'boolean', ], 'is_archived' => [ 'boolean', ], 'is_public' => [ 'boolean', ], 'client_id' => [ 'nullable', ExistsEloquent::make(Client::class, null, function (Builder $builder): Builder { /** @var Builder $builder */ return $builder->whereBelongsTo($this->organization, 'organization'); })->uuid(), ], 'billable_rate' => [ 'nullable', 'integer', 'min:0', 'max:2147483647', ], // Estimated time in seconds 'estimated_time' => [ 'nullable', 'integer', 'min:0', 'max:2147483647', ], ]; } public function getIsArchived(): bool { assert($this->has('is_archived')); return (bool) $this->input('is_archived'); } public function getBillableRate(): ?int { $input = $this->input('billable_rate'); return $input !== null && $input !== 0 ? (int) $this->input('billable_rate') : null; } public function getEstimatedTime(): ?int { $input = $this->input('estimated_time'); return $input !== null && $input !== 0 ? (int) $this->input('estimated_time') : null; } }