@extends('admin.layouts.master') @section('page-title') عرض تقرير مفصل للطلبات @endsection @section('header-title') تقرير مفصل للطلبات @endsection @push('main-orders-active') m-menu__item--active @endpush @section('content')
| # | رقم الطلب | اسم العميل | رقم الجوال | اسم المندوب | الشركة | طريقة الدفع | قيمة المنتجات | مبلغ التوصيل | قيمة الخصم | قيمة الضريبة | الرفع للادوار العليا | اجمالي المبلغ | تاريخ الطلب | المدينة |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->index+1 }} | {{ $order->id }} | {{ $order->user['name'] }} | 0{{ $order->user['phone'] }} | {{ $order->driver['name']? $order->driver['name'] : '-' }} | {{ $order->company['name'] }} | {{ __('api.payment_methods.' . $order->payment_method) }} | {{ $order['price'] }} | {{ $order['delivery_price'] }} | {{ $order['discount'] }} | {{ $order['vat'] }} | {{ $order['total_stair_cost'] }} | {{ $order['total_price'] }} | {{ $order['created_at']->format('Y-m-d') }} | {{ $order['city']['name'] }} |