Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/cms.ncriptech.com/../cms.ncriptech.com/app/Imports/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php namespace App\Imports; use Carbon\Carbon; use App\Models\Application; use Illuminate\Support\Collection; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Crypt; use Illuminate\Support\Facades\Validator; use Maatwebsite\Excel\Concerns\ToCollection; use Maatwebsite\Excel\Concerns\WithHeadingRow; class ApplicationsImport implements ToCollection, WithHeadingRow { /** * @param array $row * * @return \Illuminate\Database\Eloquent\Model|null */ public function collection(Collection $rows) { Validator::make($rows->toArray(), [ '*.registration_no' => 'required', '*.program_id' => 'required|integer', '*.apply_date' => 'required|date', '*.first_name' => 'required', '*.last_name' => 'required', '*.email' => 'required', '*.phone' => 'required', '*.present_province' => 'nullable|integer', '*.present_district' => 'nullable|integer', '*.permanent_province' => 'nullable|integer', '*.permanent_district' => 'nullable|integer', '*.gender' => 'required|integer', '*.dob' => 'required|date', '*.marital_status' => 'nullable|integer', '*.blood_group' => 'nullable|integer', ])->validate(); foreach ($rows as $row) { Application::updateOrCreate( [ 'registration_no' => $row['registration_no'], ],[ 'registration_no' => $row['registration_no'], 'program_id' => $row['program_id'], 'apply_date' => $row['apply_date'], 'first_name' => $row['first_name'], 'last_name' => $row['last_name'], 'father_name' => $row['father_name'], 'mother_name' => $row['mother_name'], 'father_occupation' => $row['father_occupation'], 'mother_occupation' => $row['mother_occupation'], 'present_province' => $row['present_province'], 'present_district' => $row['present_district'], 'present_address' => $row['present_address'], 'permanent_province' => $row['permanent_province'], 'permanent_district' => $row['permanent_district'], 'permanent_address' => $row['permanent_address'], 'phone' => $row['phone'], 'email' => $row['email'], 'gender' => $row['gender'], 'dob' => $row['dob'], 'marital_status' => $row['marital_status'], 'blood_group' => $row['blood_group'], 'national_id' => $row['national_id'], 'passport_no' => $row['passport_no'], 'school_name' => $row['school_name'], 'school_exam_id' => $row['school_exam_id'], 'school_graduation_year' => $row['school_graduation_year'], 'school_graduation_point' => $row['school_graduation_point'], 'collage_name' => $row['collage_name'], 'collage_exam_id' => $row['collage_exam_id'], 'collage_graduation_year' => $row['collage_graduation_year'], 'collage_graduation_point' => $row['collage_graduation_point'], ]); } } }