46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Imports;
|
|
|
|
use App\Models\Dataset\DatasetTable12;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
use Maatwebsite\Excel\Concerns\WithStartRow;
|
|
|
|
class DatasetTable12Import 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 DatasetTable12([
|
|
'dataset_id' => $this->datasetId,
|
|
'created_by' => $this->userId,
|
|
'golongan' => $row[0],
|
|
'lokasi' => $row[1],
|
|
'luas_tutupan' => $row[2],
|
|
'sangat_baik' => $row[3],
|
|
'baik' => $row[4],
|
|
'sedang' => $row[5],
|
|
'rusak' => $row[6],
|
|
|
|
]);
|
|
}
|
|
}
|