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

Hello {{ auth()->user()->first_name.' '.auth()->user()->last_name}}

Loading...
@can('product.create') Add New Order @endcan @can('orderStatusUPdate') Assign User @endcan Status Change @can('product.delete') Delete All @endcan @php $isPending = \App\Models\Order::where(['status' => 'pending'])->first(); @endphp Print
@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:''}} @php $final_amount = $item->final_amount; $fa = intval($final_amount); echo $fa; @endphp
@endsection @push('js') @endpush