@if(isset($orders) && $orders->count() > 1)
Search Results ({{ $orders->count() }} orders found)
@foreach($orders as $order) @endforeach
SL Invoice Date Product Name Phone Assign Status Note
{{ $loop->iteration }} {{$order->invoice_id}} {{ $order->created_at->format('d-m-Y') }} @foreach ($order->orderdetails as $details)
{{ $details->product_name }} @if($details->product_color)
Color: {{ $details->product_color }} @endif @if($details->product_size)
Size: {{ $details->product_size }} @endif

@endforeach
{{$order->shipping?$order->shipping->name:''}}

{{$order->shipping?$order->shipping->address:''}}

{{$order->shipping?$order->shipping->phone:''}} {{$order->user?$order->user->name:''}} {{$order->status?$order->status->name:''}} {{$order->admin_note?$order->admin_note:''}}
@elseif(request('keyword'))

No Duplicate orders found for "{{ request('keyword') }}"

@endif