@extends('admin.layout.master') @section('title', "تفاصيل الطلب") @section('content')
--}} {{-- --}} {{-- --}} {{-- --}} {{--
--}}الكود | اسم العميل | إسم الشركة | تكلفة الطلب | مدينة فرع الشركة | طريقه الدفع | حالة الطلب |
---|---|---|---|---|---|---|
{{$row->code}} | {{$row->user->first_name .' '. $row->user->last_name}} | {{$row->company->company_name}} | {{$row->total_price}} | {{$row->branch->city->name['ar']}} | @if($row->payment_method == 'visa') الدفع الألكتروني @elseif($row->payment_method == 'in_shop') الدفع في المعرض @elseif($row->payment_method == 'percent') الحجز بنسبة @endif | @if('status' == 'finished') منهى @elseif('payment_method' == 'new') جديد @else محجوز @endif |
تاريخ الطلب | العنوان المسجل في الطلب | الإسم المسجل في الطلب | رقم الجوال المسجل في الطلب | المدينة المختارة في الطلب |
---|---|---|---|---|
{{\Carbon\Carbon::parse($row->created_at)->toDateString()}} | {{$row->address}} | {{$row->fullname}} | {{$row->mobile}} | {{$row->city->name['ar']}} |
--}} {{-- --}} {{-- --}} {{-- --}} {{--
--}}المنتج | العدد | سعر الوحدة بعد الخصم إن وجد | الإجمالى |
---|---|---|---|
{{$cart->product->name['ar']}} | {{$cart->count}} | {{$cart->product->discount_price}} | {{$cart->calculateTotalPriceCount($cart->count , $cart->product->discount_price)}} |