Laravel Maatwebsite 导入Excel
use Maatwebsite\Excel\Facades\Excel;use App\Imports\XXImport;$filePath = 'xxx.xlsx'; //$filePath 根据 config/filesystems.php文件中配置找到文件Excel::import($import,$filePath,null,\Maatwebsite\Excel\Excel::XLSX);XXImport<?phpnamespace App\Imports;..