|string> */ public function rules(): array { return [ 'course_assignment_id' => 'required|exists:course_assignments,id', 'attachment_type' => 'required|in:url,file', 'attachment_path' => 'required_if:attachment_type,url|nullable|string', 'comment' => 'nullable|string', ]; } }