D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
wabot.delyntro.com
/
app
/
Imports
/
Filename :
ContactImport.php
back
Copy
<?php /* Copyright © Magd Almuntaser, OneXGen Technology. All rights reserved. Project: MPWA Whatsapp Gateway | Multi Device Licensed under the CC BY-NC-ND 4.0 License. For details, visit https://creativecommons.org/licenses/by-nc-nd/4.0/. */ namespace App\Imports; use App\Models\Contact; use GuzzleHttp\Psr7\Request; use Illuminate\Support\Collection; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Log; use Maatwebsite\Excel\Concerns\ToCollection; class ContactImport implements ToCollection { /** * @param Collection $collection */ protected $tag; protected $user; public function __construct($tag) { $this->tag = $tag; $this->user = Auth::user()->id; } public function collection(Collection $collection) { //Log::info($collection); foreach($collection as $row){ if(strtoupper($row[0]) == 'NAME' && strtoupper($row[1]) == 'NUMBER') continue; if($row[0] == null || $row[1] == null) continue; if(is_numeric($row[1])){ Contact::create([ 'user_id' => $this->user, 'tag_id' => $this->tag, 'name' => $row[0], 'number' => (string)$row[1] ]); } } } }