27 lines
392 B
PHP
27 lines
392 B
PHP
<?php
|
|
|
|
|
|
namespace App\Imports;
|
|
|
|
use App\User;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
|
|
class PropertiesImport implements ToModel
|
|
{
|
|
private $rows = 0;
|
|
|
|
public function model(array $row)
|
|
{
|
|
++$this->rows;
|
|
|
|
return new User([
|
|
'name' => $row[0],
|
|
]);
|
|
}
|
|
|
|
public function getRowCount(): int
|
|
{
|
|
return $this->rows;
|
|
}
|
|
}
|
|
?>
|