Order Migration Dashboard

Total Orders

{{ number_format($totalOrders) }}

Completed

{{ number_format($completedMigrations) }}

Failed

{{ number_format($failedMigrations) }}

Progress

{{ $totalOrders > 0 ? round(($completedMigrations / $totalOrders) * 100, 2) : 0 }}%

{{--

Start Migration by Year/Month

--}}

Orders by Year/Month

@foreach($yearMonths as $item) @endforeach
Year Month Total Orders Status Action
{{ $item->year }} {{ date('F', mktime(0, 0, 0, $item->month, 1)) }} {{ number_format($item->count) }} Loading...