16 lines
186 B
PHP
Executable File
16 lines
186 B
PHP
Executable File
<?php
|
|
|
|
|
|
namespace App\Imports;
|
|
|
|
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
|
|
class UsersImport implements ToModel
|
|
{
|
|
public function model(array $row)
|
|
{
|
|
return $row;
|
|
}
|
|
}
|