> */ public function rules(): array { return [ 'name' => [ 'required', 'string', 'max:255', ], 'billable_rate' => [ 'nullable', 'integer', 'min:0', 'max:2147483647', ], 'employees_can_see_billable_rates' => [ 'boolean', ], ]; } public function getBillableRate(): ?int { $input = $this->input('billable_rate'); return $input !== null && $input !== 0 ? (int) $this->input('billable_rate') : null; } }