@extends('layouts.app') @section('content')
The order migration process will:
⚠️ Warning: This will modify your Magento 2 database. Make sure you have a backup before proceeding.
Detailed logs showing which orders were added, updated, or encountered errors during migration:
These orders exist in Magento 1 but are missing in Magento 2:
| ID | Increment ID | Customer Email | Status | Grand Total | Created At |
|---|---|---|---|---|---|
| {{ $order->entity_id }} | {{ $order->increment_id ?? 'N/A' }} | {{ $order->customer_email ?? 'N/A' }} | {{ $order->status ?? 'N/A' }} | {{ $order->grand_total ?? 'N/A' }} | {{ $order->created_at ?? 'N/A' }} |
Showing first 50 of {{ $m1OrdersNotInM2->count() }} orders.
@endifThese orders exist in Magento 2 but are missing in Magento 1:
| ID | Increment ID | Customer Email | Status | Grand Total | Created At | Actions |
|---|---|---|---|---|---|---|
| {{ $order->entity_id }} | {{ $order->increment_id ?? 'N/A' }} | {{ $order->customer_email ?? 'N/A' }} | {{ $order->status ?? 'N/A' }} | {{ $order->grand_total ?? 'N/A' }} | {{ $order->created_at ?? 'N/A' }} |
Showing first 50 of {{ $m2OrdersNotInM1->count() }} orders.
@endif