CsvTestImport.php 343 B

123456789101112131415161718192021
  1. <?php
  2. use Maatwebsite\Excel\Files\ExcelFile;
  3. class CsvTestImport extends ExcelFile {
  4. /**
  5. * Custom delimiter
  6. * @var string
  7. */
  8. protected $delimiter = ';';
  9. /**
  10. * Get file to import
  11. * @return string
  12. */
  13. public function getFile()
  14. {
  15. return __DIR__ . '/../files/test-custom.csv';
  16. }
  17. }