php - ErrorException : Trying to access array offset on value of type int

one text

i'm getting the issue of "Trying to access array offset on value of type int" when i export the data using "maatwebsite/excel": "~2.1.0" Excel package.

Excel::create('Filename', function($excel) use ($data){
  $excel->sheet('Sheetname', function($sheet)use ($data) {
    $sheet->fromArray($data); //getting error on this line
  });
})->export('xls')->download('xls');

Sample data:

$data = 
 array:198 [
   0 => array:19 [
     "Id" => 1
     "First Name" => "John"
     "Last Name" => "Doe"
     "comments" => null
   ]
   1 => array:19 [
     "Id" => 2
     "First Name" => "James"
     "Last Name" => "Harrison"
     "comments" => null
   ]
   ...

Source