43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Imports;
|
|
|
|
use App\Models\Dataset\DatasetTable8;
|
|
use Maatwebsite\Excel\Concerns\ToModel;
|
|
use Maatwebsite\Excel\Concerns\WithStartRow;
|
|
|
|
class DatasetTable8Import 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 DatasetTable8([
|
|
'dataset_id' => $this->datasetId,
|
|
'created_by' => $this->userId,
|
|
'lokasi' => $row[0],
|
|
'parameter' => $row[1],
|
|
'ambang_kritis' => $row[2],
|
|
'hasil_pengamatan' => $row[3],
|
|
'status' => $row[4],
|
|
]);
|
|
}
|
|
}
|