We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a78fc4f + 859cc2e commit c95fa67Copy full SHA for c95fa67
packages/model/src/Model.php
@@ -139,7 +139,7 @@ public static function migrate(?string $locale = null): void
139
140
$data->transform(function (string $line) use ($schema): Collection {
141
return $schema->combine(
142
- array_map(fn ($value) => $value !== '' ? $value : null, str_getcsv($line))
+ array_map(fn ($value) => $value !== '' ? $value : null, str_getcsv($line, escape: '\\'))
143
);
144
});
145
0 commit comments