23 lines
383 B
PHP
Executable File
23 lines
383 B
PHP
Executable File
<?php
|
|
/**
|
|
* @createtime 2023/3/29
|
|
* @author wild
|
|
* @copyright PhpStorm
|
|
*/
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
use Maatwebsite\Excel\Concerns\Importable;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
|
|
class TestImport implements ToModel {
|
|
use Importable;
|
|
public function model(array $row)
|
|
{
|
|
// TODO: Implement model() method.
|
|
return $row;
|
|
}
|
|
}
|