ErrorException (E_USER_NOTICE) Undefined index: matricule. Document field does not exist. code example
Example: php undefined index
// Your array index has no value or is not referencing anything,
// The easiest way to overcome this is to simply check whether
// it has been defined
if (isset($arr[$i])) {
// Do something
}