У меня есть рабочий код в контроллере, как показано ниже, проблема в том, что когда я хотел отредактировать его содержимое, оно не сохраняется.
Контроллер
$rows = Excel::load($file_path, function($reader) use ($column_number)
{
$reader->takeColumns($column_number);
$reader->noHeading();
})->get();
$rows = $rows->toArray();
Просмотр содержимого
dump($rows[0][0]); // this will display A1 cell and it is working fine
Но когда я пытаюсь сделать это так
$rows[0][0] = "Test"; // this will not write the cell A1
dump($rows); // but it will display as shown in picture below