@php
$progress = $order->shipping_progress;
if ($progress < 33) {
$statusText = __('Pending');
$statusClass = 'orange';
} elseif ($progress < 66) {
$statusText = __('Ready for Shipping');
$statusClass = 'orange';
} elseif ($progress < 100) {
$statusText = __('Shipping in Progress');
$statusClass = 'orange';
} else {
$statusText = __('Shipped');
$statusClass = 'green';
}
@endphp
{{ $statusText }} ( {{ $progress }}% )