@extends('admin.layouts.master') @section('title') طلبات {{$title}} @endsection @section('styles') @endsection @section('page_header')

عرض جميع طلبات العضو {{$user->name}}

@endsection @section('content')

{{ $user->name }}

@lang('messages.name') : {{$user->name}}

رقم الطلب : {{ $order->id }}

حالة الطلب : {{ getOrderType($order->status) }}

طريقة الدفع : {{\App\Models\PaymentMethod::find($order->payment_method)->name['ar']}}

@if($order->transaction_id)

رقم العملية : {{ $order->transaction_id }}

@endif

قيمة الطلب : {{ $order->products_total }} ريال

قيمة الشحن : {{ $order->shipping_cost }} ريال

قيمة الخصم : {{ $order->total_after_coupon }} ريال

الاجمالي : {{ $order->all_total }}

تاريخ الطلب : {{ $order->created_at->format('Y-m-d g:i A') }}

اسم المستلم : {{ $order->name ? $order->name : '---' }}

رقم الجوال : {{ $order->phone ? $order->phone : '---' }}

المدينة : {{ $order->city->name['ar'] }}

المنطقة : {{ $order->region->name['ar'] }}

ملاحظات : {{ $order->notes ? $order->notes : '---' }}

طلبات {{$title}}

@if($data->count()) @foreach( $data as $product )
# @lang('web.image') @lang('web.Product_name') @lang('web.price')