@php
$groupIndex = $groupIndex ?? 0;
$showLocation = $showLocation ?? false;
@endphp
|
|
#{{ $order->invoice_id }}
ID {{ $order->id }} · {{ $order->created_at->format('d M, g:i A') }}
|
{{ $order->customer_name }}
{{ $order->customer_phone }}
|
@if($showLocation)
{{ $order->district ?: '—' }}
@if($order->upazila)
{{ $order->upazila }}
@endif
|
@endif
@if($order->shipping_address)
{{ Str::limit($order->shipping_address, 50) }}
@else
—
@endif
|
@foreach($order->items as $item)
{{ Str::limit($item->product_name, 28) }} ×{{ $item->qty }}
@endforeach
@if($order->admin_note)
@include('backEnd.order.partials.order-note-list', ['noteText' => $order->admin_note])
@endif
|
৳{{ number_format($order->amount, 0) }} |
@include('backEnd.order.partials.booking-courier-buttons-compact', [
'orderId' => $order->id,
'steadfastOn' => $steadfastOn,
'pathaoOn' => $pathaoOn,
'redxOn' => $redxOn,
'carrybeeOn' => $carrybeeOn ?? false,
'manualOn' => $manualOn,
'manualCouriers' => $manualCouriers,
])
|