17 lines
		
	
	
		
			234 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			234 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Maatwebsite\Excel\Files\NewExcelFile;
 | |
| 
 | |
| class TestNewFile extends NewExcelFile {
 | |
| 
 | |
|     /**
 | |
|      * Get file to import
 | |
|      * @return string
 | |
|      */
 | |
|     public function getFilename()
 | |
|     {
 | |
|         return 'test-file';
 | |
|     }
 | |
| 
 | |
| } 
 | 
