Laravel validations$errorMessage = "NFL Competition already exist for year $this->year and with the selected competition type.";return [ 'name' => 'string', 'abbreviation' => 'required|max:10', 'year' => 'required|digits:4|integer|min:1900|max:' . (date('Y') + 1), 'competition_type_id' => ['required', 'string', new IsCompositeUnique('basketball_competitions',...