TestExport.php 232 B

12345678910111213141516
  1. <?php
  2. use Maatwebsite\Excel\Files\NewExcelFile;
  3. class TestExport extends NewExcelFile {
  4. /**
  5. * Get file to import
  6. * @return string
  7. */
  8. public function getFilename()
  9. {
  10. return 'test-file';
  11. }
  12. }