for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cortex\Foundation\Importers;
use Maatwebsite\Excel\Files\ExcelFile;
class DefaultImporter extends ExcelFile
{
/**
* The importer config.
*
* @var array
*/
public $config = [
'name' => 'name',
'log' => true,
];
* {@inheritdoc}
protected $delimiter = ';';
protected $enclosure = '"';
protected $lineEnding = '\r\n';
public function getFile()
return request()->file('file');
}