42 lines
986 B
PHP
42 lines
986 B
PHP
<?php
|
|
|
|
namespace App\Imports;
|
|
|
|
use App\Models\Dataset\DatasetTable19;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
use Maatwebsite\Excel\Concerns\WithStartRow;
|
|
|
|
class DatasetTable19Import implements ToModel,WithStartRow
|
|
{
|
|
/**
|
|
* @param array $row
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Model|null
|
|
*/
|
|
protected $datasetId;
|
|
protected $userId;
|
|
|
|
public function __construct($datasetId,$userId)
|
|
{
|
|
$this->datasetId = $datasetId;
|
|
$this->userId = $userId;
|
|
}
|
|
|
|
public function startRow(): int
|
|
{
|
|
return 6;
|
|
}
|
|
|
|
public function model(array $row)
|
|
{
|
|
return new DatasetTable19([
|
|
'dataset_id' => $this->datasetId,
|
|
'created_by' => $this->userId,
|
|
'kabupaten_kota' => $row[0],
|
|
'jumlah_unit' => $row[1],
|
|
'luas' => $row[2],
|
|
'keterangan' => $row[3],
|
|
]);
|
|
}
|
|
}
|