@extends('backEnd.layouts.master') @section('title','Incomplete Orders') @push('styles') @endpush @section('content')
| ID | Customer | Location | Products | Date / Note | Action | |
|---|---|---|---|---|---|---|
|
#{{ $order->id }}
{{ $srcInfo['label'] }}
|
{{ $order->customer_name }}
{{ $order->customer_phone }}
@if($order->ip_address)
{{ $order->ip_address }}
@endif
|
@if($order->district || $order->upazila)
{{ $order->district ?: '—' }}
@if($order->upazila){{ $order->upazila }} @endif
@elseif($order->shipping_address && $order->shipping_address !== '—')
{{ Str::limit($order->shipping_address, 40) }}
@else
Not specified
@endif
|
@if($thumb) ৳{{ number_format($order->amount) }}
{{ $order->items->count() }} Items
|
{{ $order->created_at->format('d M Y g:i A') }}
@if($order->admin_note)
@include('backEnd.order.partials.order-note-list', ['noteText' => $order->admin_note])
@endif
|
Create | |
| No incomplete orders! | ||||||