@extends('admin::layouts.master') @php $pageTitle = 'سفارش‌ها'; @endphp @section('title', 'سفارش‌ها') @section('content')

لیست سفارش‌ها

@if (request()->hasAny(['q', 'status', 'item_type', 'min_price', 'max_price'])) حذف فیلترها @endif
@if (request()->hasAny(['q', 'status', 'item_type', 'min_price', 'max_price']))
@endif
@foreach($orders as $order) @endforeach
# شماره فاکتور کاربر مرتبط با مبلغ پرداختی درگاه وضعیت پرداخت آخرین بروزرسانی عملیات
{{ $loop->iteration }} {{ $order->order_number }} {{ $order->user->name }} @foreach($order->items as $item) {{ $item->model_name }} @endforeach {{ number_format($order->payment_price) }} تومان {{$order->payment->driver}} {{ $order->status_name }} {{ jdate($order->updated_at) }} مشاهده فاکتور
@include('components.pagination', ['paginator' => $orders]) @endsection