@php $totalOrders = ($pathaoData['orders'] ?? 0) + ($steadfastData['orders'] ?? 0); $totalDelivered = ($pathaoData['delivered'] ?? 0) + ($steadfastData['delivered'] ?? 0); $totalCancelled = ($pathaoData['cancelled'] ?? 0) + ($steadfastData['cancelled'] ?? 0); $successRate = $totalOrders > 0 ? round(($totalDelivered / $totalOrders) * 100, 2) : 0; $failedRate = $totalOrders > 0 ? round(($totalCancelled / $totalOrders) * 100, 2) : 0; @endphp @if ($pathaoData) @endif @if ($steadfastData) @endif
কুরিয়ার অর্ডার ডেলিভারি বাতিল
Pathao {{ $pathaoData['orders'] ?? 0 }} {{ $pathaoData['delivered'] ?? 0 }} {{ $pathaoData['cancelled'] ?? 0 }}
Steadfast New {{ $steadfastData['orders'] ?? 0 }} {{ $steadfastData['delivered'] ?? 0 }} {{ $steadfastData['cancelled'] ?? 0 }}
Total {{ $totalOrders }} {{ $totalDelivered }} {{ $totalCancelled }}
Overall {{ $successRate }}% Success {{ $failedRate }}% Failed