@extends('layouts.app') @section('content')
The product migration process will:
⚠️ Warning: This will modify your Magento 2 database. Make sure you have a backup before proceeding.
Detailed logs showing which products were added, updated, or encountered errors during migration:
These products exist in Magento 1 but are missing in Magento 2:
| ID | SKU | Name | Type | Status |
|---|---|---|---|---|
| {{ $product->entity_id }} | {{ $product->sku ?? 'N/A' }} | {{ $product->name ?? 'Unnamed Product' }} | {{ $product->type_id ?? 'N/A' }} | @if(($product->status ?? 0) == 1) Enabled @else Disabled @endif |
Showing first 50 of {{ $m1ProductsNotInM2->count() }} products.
@endifThese products exist in Magento 2 but are missing in Magento 1:
| ID | SKU | Name | Type | Status | Actions |
|---|---|---|---|---|---|
| {{ $product->entity_id }} | {{ $product->sku ?? 'N/A' }} | {{ $product->name ?? 'Unnamed Product' }} | {{ $product->type_id ?? 'N/A' }} | @if(($product->status ?? 0) == 1) Enabled @else Disabled @endif |
Showing first 50 of {{ $m2ProductsNotInM1->count() }} products.
@endifSync product category assignments from Magento 1 to Magento 2:
View all categories with their associated products in a tree structure