Quitado storage_path por default

This commit is contained in:
Alejandro Tasistro 2025-06-19 16:29:19 -03:00
parent ceaddcabc3
commit 688abf406d

View file

@ -17,7 +17,7 @@ class CsvHelper
* @throws Exception
*/
public static function getRecords($filePath, $message): Iterator {
$csv = Reader::createFromPath(storage_path($filePath));
$csv = Reader::createFromPath($filePath);
try {
$csv->setDelimiter("|");
$csv->setEnclosure("'");