@extends('backend.app') @section('content')

Order List

@can('product.create') Add New Order @endcan @can('product.edit') Assign User @endcan Status Change @can('product.delete') Delete All @endcan @php $isPending = \App\Models\Order::where(['status' => 'pending'])->first(); @endphp Print Send to Redx Send to Pathao Send to Steadfast
@foreach(getOrderStatus() as $key=>$value) @endforeach
@foreach($items as $item) @endforeach
Action Invoice ID Date Order Customers Product SKU Status Payment Status Assign User Courier Amount
@can('order.delete') @endcan #{{$item->invoice_no}} {{ dateFormate($item->date)}} {{$item->first_name.' '.$item->last_name}}
{{$item->shipping_address}}
{{$item->mobile}}
{{$item->status}}
{{$item->payment_status}}
{{ $item->assign?$item->assign->username:''}} {{ $item->courier?$item->courier->name:''}}
{{ $item->courier_tracking_id ?? ''}}
{{ $item->area_name ?? ''}}
@php $final_amount = $item->final_amount; $fa = intval($final_amount); echo $fa; @endphp

{!! urldecode(str_replace("/?","?",$items->appends(Request::all())->render())) !!}

@endsection @push('js') @endpush