{{-- table loader --}}
{{__('admin.loading')}}
{{-- table loader --}} {{-- table content --}} @foreach ($orders as $order) @endforeach
{{__('admin.order_num')}} {{__('admin.bill_num')}} {{__('admin.user_name')}} {{__('admin.phone')}} {{__('admin.total_qty_product')}} {{__('admin.vat_amount')}} {{__('admin.final_total')}} {{__('admin.pay_type')}} {{__('admin.order_date')}} {{__('site.order_type')}} {{__('admin.control')}}
{{ $order->id }} {{ $order->order_num }} {{ $order->user?->name }} {{ $order->user?->full_phone }} {{ newNumberFormat($order->total_products_price) }} {{__('site.currency')}} {{ newNumberFormat($order->vat_amount) }} {{__('site.currency')}} {{ newNumberFormat($order->final_total) }} {{__('site.currency')}} {{ $order->pay_type_text }} {{ $order->created_at->format('d-m-Y') }} {{ $order->type_text }}
{{-- table content --}} {{-- no data found div --}} @if ($orders->count() == 0)
{{__('admin.there_are_no_matches_matching')}}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($orders->count() > 0 && $orders instanceof \Illuminate\Pagination\AbstractPaginator )
{{$orders->links()}}
@endif {{-- pagination links div --}}