@extends('layouts.admin', ['title' => 'سفارشات حذف شده']) @section('content')
@if(isset($search))

نتیجه جستجو عبارت «{{ $search }}» بازگشت

@else

فهرست سفارشات حذف شده

@endif
@if(count($data)==0) @else @foreach($data as $item) @endforeach
ردیف شماره‌ پیگیری تاریخ پرداختی آنلاین جمع تخفیف مبلغ قابل پرداخت وضعیت وضعیت موجودی
{{ $item->rowIndex }} DO-{{ \App\Models\Cart::find($item->id)->invoice_number }} {{ GetShamsiDate($item->order_at) }} {{ $item->paid }} تومان {{ number_format($item->total, 0, '', ',') }} تومان {{ number_format($item->discount_accepted + $item->discount_admin , 0, '', ',') }} {{ number_format($item->payable , 0, '', ',') }} تومان {{ getCartStatusTitle($item->status) }} @if($item->item_count_status==0) -موجودی @else کم شد @endif مشاهده
@if(!isset($search)) {!! $data->render(); !!} @endif
@endif @stop