check(); } public function rules(): array { return [ 'class_section_id' => ['required', 'integer', 'min:1'], 'class_section_name' => ['nullable', 'string', 'max:255'], 'school_year' => ['nullable', 'string', 'max:20'], 'semester' => ['nullable', 'string', 'max:20'], 'invite_link' => ['required', 'string', 'max:2000'], 'active' => ['nullable', 'boolean'], ]; } }