52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace App\Imports;
 | 
						|
 | 
						|
use App\Models\Dataset\DatasetTable16;
 | 
						|
use Maatwebsite\Excel\Concerns\ToModel;
 | 
						|
use Maatwebsite\Excel\Concerns\WithStartRow;
 | 
						|
 | 
						|
class DatasetTable16Import 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) {
 | 
						|
            return null; // baris kosong dilewati
 | 
						|
        }
 | 
						|
        return new DatasetTable16([
 | 
						|
            'dataset_id'                            => $this->datasetId,
 | 
						|
            'created_by'                            => $this->userId,
 | 
						|
            'kabupaten_kota'                        => $row[1],
 | 
						|
            'lokasi_penanaman'                      => $row[2],
 | 
						|
            'penghijauan_target'                    => $row[3],
 | 
						|
            'penghijauan_luas_realisasi'            => $row[4],
 | 
						|
            'penghijauan_realisasi_jumlah_pohon'    => $row[5],
 | 
						|
            'penghijauan_jumlah_pohon_hidup'        => $row[6],
 | 
						|
            'reboisasi_target'                      => $row[7],
 | 
						|
            'reboisasi_luas_realisasi'              => $row[8],
 | 
						|
            'reboisasi_realisasi_jumlah_pohon'      => $row[9],
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |