@extends('layouts.app') @section('content')
The customer migration process will:
⚠️ Warning: This will modify your Magento 2 database. Make sure you have a backup before proceeding.
Detailed logs showing which customers were added, updated, or encountered errors during migration:
These customers exist in Magento 1 but are missing in Magento 2:
| ID | First Name | Last Name | Website ID | Group ID | |
|---|---|---|---|---|---|
| {{ $customer->entity_id }} | {{ $customer->email ?? 'N/A' }} | {{ $customer->firstname ?? 'N/A' }} | {{ $customer->lastname ?? 'N/A' }} | {{ $customer->website_id ?? 'N/A' }} | {{ $customer->group_id ?? 'N/A' }} |
Showing first 50 of {{ $m1CustomersNotInM2->count() }} customers.
@endifThese customers exist in Magento 2 but are missing in Magento 1:
| ID | First Name | Last Name | Website ID | Group ID | Actions | |
|---|---|---|---|---|---|---|
| {{ $customer->entity_id }} | {{ $customer->email ?? 'N/A' }} | {{ $customer->firstname ?? 'N/A' }} | {{ $customer->lastname ?? 'N/A' }} | {{ $customer->website_id ?? 'N/A' }} | {{ $customer->group_id ?? 'N/A' }} |
Showing first 50 of {{ $m2CustomersNotInM1->count() }} customers.
@endif