dikplhd/app/Imports/DatasetTable48AImport.php

67 lines
1.8 KiB
PHP

<?php
namespace App\Imports;
use App\Models\Dataset\DatasetTable48A;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Concerns\WithStartRow;
class DatasetTable48AImport 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)
{
// cek kalau row kosong jangan insert
if (
$row[0] === null &&
$row[1] === null &&
$row[2] === null &&
$row[3] === null &&
$row[4] === null &&
$row[5] === null &&
$row[6] === null &&
$row[7] === null &&
$row[8] === null &&
$row[9] === null &&
$row[10] === null &&
$row[11] === null
) {
return null; // baris kosong dilewati
}
return new DatasetTable48A([
'dataset_id' => $this->datasetId,
'created_by' => $this->userId,
'lokasi' => $row[1],
'tahun' => $row[2],
'nama_bank_sampah' => $row[3],
'sk' => $row[4],
'jumlah_sampah' => $row[5],
'status' => $row[6],
'kelurahan' => $row[7],
'rw' => $row[8],
'jumlah_penabung' => $row[9],
'jumlah_karyawan' => $row[10],
'omset' => $row[11],
]);
}
}